WebAssembly.customSections()
function returns a copy of the contents of all custom sections in the given module with the given string name.
WebAssembly.Module.customSections(module, sectionName);
WebAssembly.Module
object whose custom sections are being considered.
The string name of the desired custom section.
A (possibly empty) array containing
ArrayBuffer
copies of the contents of all custom sections matching
sectionName
.
若
module
is not a
WebAssembly.Module
object instance, a
TypeError
is thrown.
A wasm module is comprised of a sequence of sections . Most of these sections are fully specified and validated by the wasm spec, but modules can also contain custom sections that are ignored and skipped over during validation. (Read High level structure for information on section structures, and how normal sections ("known sections") and custom sections are distinguished.)
This provides developers with a way to include custom data inside wasm modules for other purposes, for example the name custom section , which allows developers to provide names for all the functions and locals in the module (like "symbols" in a native build).
Note that the WebAssembly text format currently doesn't have a syntax specified for adding new custom sections; you can however add a name section to your wasm during conversion from text format over to .wasm. The wast2wasm command available as part of the
wabt tool
has a
--debug-names
option — specify this during conversion to get a .wasm with a names custom section, for example:
wast2wasm simple-name-section.was -o simple-name-section.wasm --debug-names
The following example (see the custom-section.html source and live example ) compiles the loaded simple-name-section.wasm byte code.
We then do a check using
WebAssembly.Module.customSections
, looking to see whether the module instance contains a "name" custom section by checking that its
length
is more than 0. Since there is a "name" section in the example, an
ArrayBuffer
object is returned.
WebAssembly.compileStreaming(fetch('simple-name-section.wasm'))
.then(function(mod) {
var nameSections = WebAssembly.Module.customSections(mod, "name");
if (nameSections.length != 0) {
console.log("Module contains a name section");
console.log(nameSections[0]);
};
});
| 规范 |
|---|
|
WebAssembly JavaScript 接口
The definition of 'customSections()' in that specification. |
| Desktop | Mobile | Server | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
customSections
|
Chrome 57 | Edge 16 |
Firefox
52
|
IE No | Opera 44 | Safari 11 | WebView Android 57 | Chrome Android 57 |
Firefox Android
52
|
Opera Android 43 | Safari iOS 11 | Samsung Internet Android 7.0 | nodejs 8.0.0 |
完整支持
不支持
见实现注意事项。
WebAssembly
WebAssembly.Module
WebAssembly.Global
WebAssembly.Instance
WebAssembly.Memory
WebAssembly.Table
WebAssembly.CompileError
WebAssembly.LinkError
WebAssembly.RuntimeError
Object
Object.prototype.__defineGetter__()
Object.prototype.__defineSetter__()
Object.prototype.__lookupGetter__()
Object.prototype.__lookupSetter__()
Object.prototype.hasOwnProperty()
Object.prototype.isPrototypeOf()
Object.prototype.propertyIsEnumerable()
Object.prototype.toLocaleString()
Object.prototype.toSource()
Object.prototype.toString()
Object.prototype.valueOf()
Object.setPrototypeOf()