WebAssembly.Table() 构造函数创建新 Table object of the given size and element type.

句法

new WebAssembly.Table(tableDescriptor);
					

参数

tableDescriptor
An object that can contain the following members:
element
A string representing the type of value to be stored in the table. At the moment this can only have a value of "anyfunc" (functions).
initial

The initial number of elements of the WebAssembly Table.

maximum 可选

The maximum number of elements the WebAssembly Table is allowed to grow to.

异常

  • tableDescriptor is not of type object, a TypeError is thrown.
  • maximum is specified and is smaller than initial RangeError is thrown.

范例

Creating a new WebAssembly Table instance

The following example (see table2.html source code and live version ) creates a new WebAssembly Table instance with an initial size of 2 elements. We then print out the table length and contents of the two indexes (retrieved via Table.prototype.get() to show that the length is two and both elements are null .

var tbl = new WebAssembly.Table({initial:2, element:"anyfunc"});
console.log(tbl.length);  // "2"
console.log(tbl.get(0));  // "null"
console.log(tbl.get(1));  // "null"
							

We then create an import object that contains the table:

var importObj = {
  js: {
    tbl:tbl
  }
};
							

Finally, we load and instantiate a wasm module (table2.wasm) using the WebAssembly.instantiateStreaming() method.  The table2.wasm module contains two functions (one that returns 42 and another that returns 83) and stores both into elements 0 and 1 of the imported table (see text representation ).  So after instantiation, the table still has length 2, but the elements now contain callable Exported WebAssembly Functions which we can call from JS.

WebAssembly.instantiateStreaming(fetch('table2.wasm'), importObject)
.then(function(obj) {
  console.log(tbl.length);
  console.log(tbl.get(0)());
  console.log(tbl.get(1)());
});
							

Note how you've got to include a second function invocation operator at the end of the accessor to actually invoke the referenced function and log the value stored inside it (e.g. get(0)() 而不是 get(0) ).

This example shows that we're creating and accessing the table from JavaScript, but the same table is visible and callable inside the wasm instance too.

规范

规范
WebAssembly JavaScript 接口
The definition of 'Table' in that specification.

浏览器兼容性

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request. 更新 GitHub 上的兼容性数据
Desktop Mobile Server
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet Node.js
Table() 构造函数 Chrome 57 Edge 16 Firefox 52
52
Disabled in the Firefox 52 Extended Support Release (ESR).
IE No Opera 44 Safari 11 WebView Android 57 Chrome Android 57 Firefox Android 52
52
Disabled in the Firefox 52 Extended Support Release (ESR).
Opera Android 43 Safari iOS 11 Samsung Internet Android 7.0 nodejs 8.0.0

图例

完整支持

完整支持

不支持

不支持

见实现注意事项。

另请参阅

元数据

  • 最后修改: