从JavaScript编译为Wasm的异步Rust函数时,为什么字符串参数为空?

时间:2020-03-27 08:17:24

标签: rust wasm-bindgen wasm-pack

我正在使用用wasm-pack构建的wasm_bindgen。我有一个暴露给JS的Rust函数:

#[wasm_bindgen]
pub async fn validate_registration_token(backend_api_domain: String, token: String) -> Result<JsValue, JsValue> {

    console::log_1(&"backend_api_domain=".clone().into());
    console::log_1(&backend_api_domain.clone().into());
    console::log_1(&"token=".clone().into());
    console::log_1(&backend_api_domain.clone().into());

    let api_endpoint_get_guest_info = format!(
        "{backend_api_domain}/weddings/{token}/guests/registration/{registration_token}",
        backend_api_domain = backend_api_domain.clone(),
        token = token.clone(),
        registration_token = registration_token.clone()
    );

    console::log_1(&api_endpoint_get_guest_info.clone().into());

    let res = reqwest::Client::new()
        .get(&api_endpoint_get_guest_info)
        .send()
        .await
        .unwrap();

    let text = res.text().await.unwrap();

    let promise = js_sys::Promise::resolve(&true.into());
    let result = wasm_bindgen_futures::JsFuture::from(promise).await.unwrap();
    Ok(result)
}

在HTML / JavaScript中,我称为Rust函数:

<button
    type="button"
    class="btn submit"
    onclick="wam.validate_registration_token('http://localhost:80', 'mytoken')">
    Send
</button>

启动应用程序时,单击Send按钮将调用我的Rust函数,但是两个String参数似乎都是空白/缺失。

这是上面功能的控制台跟踪:

backend_api_domain=

token=

/weddings//guests/registration/AAAA

我不确定我在做什么错。我应该更改从JavaScript调用Rust函数的方式吗?

这里是the full code example to reproduce

1 个答案:

答案 0 :(得分:0)

最终设法解决了该问题! 感谢用户Pauan的帮助,以防锈。 我的错误是无法在JS中正确初始化WASM。

await init('./ front_bg.wasm')的返回值是原始WebAssembly导出(通常不应该使用) 而./front.js模块包装了这些导出,以便它们可以正常工作 因此您必须使用./front.js中定义的函数,而不是使用init返回的函数

请参阅https://discordapp.com/channels/442252698964721669/443151097398296587/693385649750933564

已将HTML中的脚本标记更改为以下标记:

import init, * as wam from './front.js';
const run = async () => {
    await init('./front_bg.wasm');
    window.wam = wam;
};
run();

谢谢!