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
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262) [[IsExtensible]] |
Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262) [[IsExtensible]] |
Draft |
Desktop | Mobile | Server | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
isExtensible | Chrome ? | Edge ? | Firefox Full support 31 | IE No support No | Opera ? | Safari ? | WebView Android ? | Chrome Android ? | Edge Mobile ? | Firefox Android Full support 31 | Opera Android ? | Safari iOS ? | Samsung Internet Android ? | nodejs Full support 6.0.0 |