get() method returns a specified element from a WeakMap 对象。

The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.

句法

wm.get(key);
					

参数

key
Required. The key of the element to return from the WeakMap 对象。

返回值

The element associated with the specified key in the WeakMap object. If the key can't be found, undefined 被返回。

范例

使用 get 方法

var wm = new WeakMap();
wm.set(window, 'foo');
wm.get(window); // Returns "foo".
wm.get('baz');  // Returns undefined.
					

规范

规范
ECMAScript (ECMA-262)
The definition of 'WeakMap.prototype.get' 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
get Chrome 36 Edge 12 Firefox 6
6
Prior to Firefox 38, this method threw a TypeError when the key parameter was not an object. However, the ES2015 specification specifies to return undefined instead. Furthermore, WeakMap.prototype.get accepted an optional second argument as a fallback value, which is not part of the standard. Both non-standard behaviors are removed in version 38 and higher.
IE 11 Opera 23 Safari 8 WebView Android 37 Chrome Android 36 Firefox Android 6
6
Prior to Firefox 38, this method threw a TypeError when the key parameter was not an object. However, the ES2015 specification specifies to return undefined instead. Furthermore, WeakMap.prototype.get accepted an optional second argument as a fallback value, which is not part of the standard. Both non-standard behaviors are removed in version 38 and higher.
Opera Android 24 Safari iOS 8 Samsung Internet Android 3.0 nodejs 0.12
0.12
0.10 Disabled
Disabled From version 0.10: this feature is behind the --harmony runtime flag.

图例

完整支持

完整支持

见实现注意事项。

用户必须明确启用此特征。

用户必须明确启用此特征。

另请参阅

元数据

  • 最后修改: