我的目标是编写一个 Kotlin 库,将其编译为 WebAssembly 并从 JS 调用它的函数。几个小时后,我试图让一个简单的 hello world 工作。关于这个主题的文档要么不存在,要么隐藏得很好。
这是我的 kotlin 文件:
@Used
public fun hello() {
println("Hello world!")
}
fun main(args: Array<String>) {
println("main() function executed!")
}
当我将它编译为 WebAssembly 时,我得到一个hello.wasm和hello.wasm.js文件。
首先,我尝试使用类似这样的东西来执行该功能:
WebAssembly.instantiateStreaming(fetch('hello.wasm'), importObject)
.then(obj => obj.instance.exports.hello());
然后我明白我需要在importObject参数中传递来自我的hello.wasm.js文件的导入。所以我想我需要使用hello.wasm.js文件来正确初始化我的 wasm 程序。
当我像下面这样加载我的 wasm 时,我没有收到任何错误并且main()函数被执行。
<script wasm="hello.wasm" src="hello.wasm.js"></script>
但是如何从 JavaScript执行hello()函数呢?我发现的唯一 kotlin wasm 示例不是调用特定函数,而是从main()函数渲染某些内容。
此外,非常感谢任何指向相关文档的链接。
更新: 我设法执行了该功能,但我不相信这是正确的方法:
<script wasm="hello.wasm" src="hello.wasm.js"></script>
<script>
WebAssembly.instantiateStreaming(fetch('hello.wasm'), konan_dependencies)
.then(obj => obj.instance.exports['kfun:hello$$ValueType']());
</script>
问题是,如果我这样做,我的 wasm 文件会被提取两次。
仅加载没有 wasm 属性的 hello.wasm.js 文件会出现以下错误:
Uncaught Error: Could not find the wasm attribute pointing to the WebAssembly binary.
at Object.konan.moduleEntry (stats.wasm.js:433)
at stats.wasm.js:532