如何在Dart中获取wasm文件

时间:2018-09-29 16:44:05

标签: dart

我刚刚读过this,有关使用JavaScript提取WebAssembly文件

WebAssembly.instantiateStreaming(fetch('simple.wasm'), importObject)
.then(obj => obj.instance.exports.exported_func());

fetch('simple.wasm').then(response =>
  response.arrayBuffer()
).then(bytes =>
  WebAssembly.instantiate(bytes, importObject)
).then(results => {
  results.instance.exports.exported_func();
});

Dart中有等效的方法吗

0 个答案:

没有答案