Proxy
无法直接监听基本数据类型(如字符串、数字、布尔值等),因为它们是不可变的。Proxy
只能在对象级别上进行操作,而不是基本数据类型。
当我们尝试使用Proxy
包装基本数据类型时,会得到一个TypeError
错误,因为基本数据类型不具有属性和方法。
以下展示了尝试在基本数据类型上应用Proxy
时会发生的错误:
const value = "Hello";
const handler = {
set(target, property, value) {
console.log(`Setting property '${property}' to '${value}'`);
target[property] = value;
return true;
},
};
const proxyValue = new Proxy(value, handler); // TypeError: Cannot create proxy with a non-object as target
如果要监听基本数据类型的更改,最好使用其他方式,例如通过触发事件或调用回调函数来通知更改。可以创建一个自定义的数据包装器,将基本数据类型包装在对象中,并在该对象上实现监听逻辑。这样,可以在包装器对象上添加Proxy
以监听其属性的更改。
以下是一个示例,演示如何使用自定义的数据包装器来监听基本数据类型的更改:
function ValueWrapper(value) {
this.value = value;
this.onChange = null;
}
ValueWrapper.prototype.setValue = function (newValue) {
this.value = newValue;
if (typeof this.onChange === "function") {
this.onChange(this.value);
}
};
const wrapper = new ValueWrapper("Hello");
const handler = {
set(target, property, value) {
console.log(`Setting property '${property}' to '${value}'`);
target[property] = value;
if (typeof target.onChange === "function") {
target.onChange(target.value);
}
return true;
},
};
const proxyWrapper = new Proxy(wrapper, handler);
proxyWrapper.onChange = (newValue) => {
console.log(`Value changed: ${newValue}`);
};
proxyWrapper.setValue("Hi"); // 输出: Setting property 'value' to 'Hi', Value changed: Hi
在上述示例中,我们创建了一个ValueWrapper
对象作为数据包装器,并在其原型上定义了setValue
方法来设置值并触发更改事件。然后,我们使用Proxy
对该包装器对象进行拦截,以监听value
属性的更改,并在适当时调用回调函数 onChange
。
通过这种方式,可以实现对基本数据类型的更改进行监听和响应。