我正在使用 tinygo 為簡(jiǎn)單的功能生成一個(gè) wasm://export onInputfunc onInput() map[string]interface{} { return map[string]interface{}{ "key": 60, "remove": 1, }}然后我使用 wasm 目標(biāo)使用 tinygo 構(gòu)建,如:tinygo build -o main.wasm -target wasm ./main.go當(dāng)我調(diào)用該方法wasm.exports.onInput()時(shí),我得到一個(gè)數(shù)字,例如:102752我將如何獲取 JS 對(duì)象作為返回值,例如:{ key: 60, remove: 1 }// Or array [60, 1] if possible筆記:tinygo 文檔說(shuō):WebAssembly 目標(biāo)不會(huì)直接返回 JavaScript 無(wú)法處理的變量(參見(jiàn)上面關(guān)于 i64,還有 struct,i64,多個(gè)返回值等)。相反,它們存儲(chǔ)在由調(diào)用者作為第一個(gè)參數(shù)傳遞的指針中。如果那是問(wèn)題的原因,我將如何將返回值作為來(lái)自 javascript 的指針傳遞?編輯我無(wú)法弄清楚如何從 go 函數(shù)返回?cái)?shù)組、字符串或映射。我會(huì)滿足于以上任何一種。
1 回答

蝴蝶刀刀
TA貢獻(xiàn)1801條經(jīng)驗(yàn) 獲得超8個(gè)贊
根據(jù)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 代碼中使用 just onInput, without wasmModule.instance.exportsprefix
- 1 回答
- 0 關(guān)注
- 96 瀏覽
添加回答
舉報(bào)
0/150
提交
取消