Proxy.handler.set
Proxy.handler.set
handler.set()
方法用于拦截设置属性值的操作
语法
var p = new Proxy(target, {
set: function(target, property, value, receiver) {
}
}
参数
以下是传递给set方法的参数,this上下文绑定在
handler对象上.
target
目标对象。
返回值
set方法应该返回一个布尔值,返回true代表此次设置属性成功了,如果返回false且设置属性操作发生在严格模式下,那么会抛出一个TypeError
。
描述
handler.set
方法用于拦截设置属性值的操作。
拦截
该方法会拦截目标对象的以下操作:
- Property assignment:
proxy[foo] = bar
andproxy.foo = bar
- Inherited property assignment:
Object.create(proxy)[foo] = bar
Reflect.set()
约束
如果违背以下的约束条件,proxy会抛出一个TypeError
:
- 若目标属性是不可写及不可配置的,则不能改变它的值。
- 如果目标属性没有配置存储方法,即set方法是undefined的,则不能设置它的值。
- 在严格模式下,若set方法返回false,则会抛出一个
TypeError
异常。
示例
以下代码演示如何捕获属性的设置操作。
var p = new Proxy{}, {
set: function(target, prop, value, receiver) {
target[prop] = value
console.log('property set: ' + prop + ' = ' + value)
return true
}
})
console.log('a' in p) // false
p.a = 10 // "property set: a = 10"
console.log('a' in p) // true
console.log(p.a) // 10
规范
Specification | Status | Comment |
---|---|---|
ECMAScript 2015 (6th Edition, ECMA-262)The definition of '[Set]' in that specification. | Standard | Initial definition. |
ECMAScript Latest Draft (ECMA-262)The definition of '[Set]' in that specification. | Living Standard | |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 61 | 18 (18) | ? | ? | 10.1 |
Feature | Android | Chrome for Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|---|
Basic support | ? | ? | 18.0 (18) | ? | ? | ? |