我如何使用 wasm bindgen return 来自 Nodejs-WebAssembly 中 Rust 函数的字符串?

How do I return a string from a Rust function in Nodejs-WebAssembly using wasm bindgen?

我是 Rust 和 WASM 的新手,正在努力获得第一个程序 运行。

[dependencies]
wasm-bindgen = { version = "0.2.63" }

我有以下编译为 WASM 的 Rust

use wasm_bindgen::prelude::*;

// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
// allocator.
#[cfg(feature = "wee_alloc")]
#[global_allocator]
static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;

#[wasm_bindgen]
pub fn greet(name: &str) -> String {
    // let val = ["Hello", name].join(" ");
    let val = format!("Hello {}", name);
    return val;
}

和我的节点代码(灵感来自https://nodejs.dev/learn/nodejs-with-webassembly),

const fs = require("fs");
const wasmBuffer = fs.readFileSync("../pkg/hello_world_bg.wasm");
WebAssembly.instantiate(wasmBuffer)
  .then((wasmModule) => {
    // Exported function live under instance.exports
    const greet = wasmModule.instance.exports.greet;
    console.log(typeof greet);
    const greeting = greet("Simon");
    console.log("x", greeting);
  })
  .catch((err) => console.log(err));

这个日志

function
x undefined

我尝试了两种连接字符串的方法,或者我对 return 值做错了什么?

当在没有更多样板的节点中使用 WebInstantiate 时,就像您所做的那样,我得到了相同的结果 (undefined)。在浏览器中无缝运行的功能在节点中运行不佳。

但是在使用

专门构建节点模块时,我得到了字符串交换工作
wasm-pack build --target nodejs

有了node模块,使用起来也简单很多:

const wasmModule = require("./pkg/hello_world.js");
const greet = wasmModule.greet;
const greeting = greet("Simon");
console.log('greeting:', greeting);