handler.isExtensible() - JavaScript 编辑


handler.isExtensible() 方法用于拦截对对象的Object.isExtensible()。

语法

var p = new Proxy(target, {
  isExtensible: function(target) {
  }
});

参数

下列参数将会被传递给 isExtensible方法。 this 绑定在 handler 对象上。

target
目标对象。

返回值

isExtensible方法必须返回一个 Boolean值或可转换成Boolean的值。

描述

handler.isExtensible()用于拦截对对象的Object.isExtensible()。

拦截

该方法会拦截目标对象的以下操作:

约束

如果违背了以下的约束,proxy会抛出 TypeError:

  • Object.isExtensible(proxy) 必须同Object.isExtensible(target)返回相同值。也就是必须返回true或者为true的值,返回false和为false的值都会报错。

示例

以下代码演示Object.isExtensible().

var p = new Proxy({}, {
  isExtensible: function(target) {
    console.log('called');
    return true;//也可以return 1;等表示为true的值
  }
});

console.log(Object.isExtensible(p)); // "called"
                                     // true

以下代码演示违反约束的情况。

var p = new Proxy({}, {
  isExtensible: function(target) {
    return false;//return 0;return NaN等都会报错
  }
});

Object.isExtensible(p); // TypeError is thrown

规范

SpecificationStatusComment
ECMAScript 2015 (6th Edition, ECMA-262)
[[IsExtensible]]
StandardInitial definition.
ECMAScript (ECMA-262)
[[IsExtensible]]
Living Standard

浏览器兼容性

BCD tables only load in the browser

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.

另见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:131 次

字数:4516

最后编辑:7年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文