gpt4 book ai didi

Aurelia 自定义绑定(bind)行为以观察对象的所有属性

转载 作者:行者123 更新时间:2023-12-04 17:43:53 26 4
gpt4 key购买 nike

我想创建一个自定义绑定(bind)行为,允许我检测对象属性的任何更改,如下所示:

<my-form model.bind="myObject & objectObserver:myObjChanged()"></my-form>

我知道我可以使用 Aurelia 的绑定(bind)引擎来创建属性观察器,也许我可以将其构建到自定义绑定(bind)行为中以检测对象的属性并为每个属性创建属性观察器。但是我无法理解在自定义绑定(bind)行为中提供给我的绑定(bind)对象。到目前为止,这是我的代码:

import { inject, bindingBehavior, BindingEngine } from 'aurelia-framework';

@bindingBehavior('objectObserver')
@inject(BindingEngine)
export default class ObjectObserverBindingBehavior {
constructor(bindingEngine) {
this.bindingEngine = bindingEngine;
}

bind(binding, scope, interceptor) {
console.warn('hello', binding, scope, interceptor);
}

unbind(binding, scope) {
console.warn('observer.unbind()', binding, scope);
}
}

当绑定(bind)发生并输出控制台文本时,我明白了 enter image description here

所以我知道它有效,但我不知道开始观看的最佳对象是什么。我在 targetObserver.currentValue 中看到了绑定(bind)对象。那是开始观看的最佳属性(property)吗?有没有其他方法可以利用 Aurelia 绑定(bind)引擎的现有功能?

最佳答案

我找到了一个不是 Aurelia 特定的解决方案,基于 Proxy内置于 Javascript 中的功能。

export function onChangeObj(object, onChange) {
// creates Proxy to detect changes in object properties and call a function
if (typeof onChange !== 'function' || typeof object !== 'object') {
throw new Error('onChangeObj: incorrect parameters');
}
const handler = {
set(obj, prop, value) {
onChange(prop, value);
return Reflect.set(obj, prop, value);
},
};
return new Proxy(object, handler);
}

为了使用它,只需这样调用它:

this.myObject = onChangeObj(this.myObject, () => this.myObjChanged());

实际上,该对象被一个包装器代理替换,该包装器代理在每次修改其中一个属性(使用 setter )时调用提供的函数。

如果有人通过 Aurelia Binding Behavior 找到解决方案,我仍然会感兴趣。

关于Aurelia 自定义绑定(bind)行为以观察对象的所有属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53146047/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com