gpt4 book ai didi

go - 如何从 tinygo webassembly 目标返回对象

转载 作者:行者123 更新时间:2023-12-05 05:40:02 25 4
gpt4 key购买 nike

我正在使用 tinygo 为简单的函数生成一个 wasm:

//export onInput
func onInput() map[string]interface{} {
return map[string]interface{}{
"key": 60,
"remove": 1,
}
}

然后我使用 wasm 目标使用 tinygo 构建,如:

tinygo build -o main.wasm -target wasm ./main.go

当我调用方法 wasm.exports.onInput() 时,我得到一个数字,例如:102752

我如何获取 JS 对象作为返回值,例如:

{ key: 60, remove: 1 }

// Or array [60, 1] if possible

注意:

tinygo 文档说:

The WebAssembly target does not return variables directly that cannot be handled by JavaScript (see above about i64, also struct, i64, multiple return values, etc). Instead, they are stored into a pointer passed as the first parameter by the caller.

如果这是问题的原因,我如何将返回值作为指针从 javascript 传递?

编辑

我无法弄清楚如何从 go 函数返回数组、字符串或映射。我会满足于以上任何一种情况。

最佳答案

根据 example在 tinygo github 你可以尝试这样的事情:

package main

import "syscall/js"

func main() {
wait := make(chan struct{}, 0)
js.Global().Set("onInput", js.FuncOf(onInput))
<-wait
}

// note that there is no export as we registered this function in global
func onInput(this js.Value, args []js.Value) interface{} {
return js.ValueOf(map[string]interface{}{
"key": 60,
"remove": 1,
})
}

并且在你的 js 代码中只使用 onInput,没有 wasmModule.instance.exports 前缀

关于go - 如何从 tinygo webassembly 目标返回对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72522309/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com