本文整理匯總了TypeScript中aurelia-framework.BindingEngine.propertyObserver方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript BindingEngine.propertyObserver方法的具體用法?TypeScript BindingEngine.propertyObserver怎麽用?TypeScript BindingEngine.propertyObserver使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類aurelia-framework.BindingEngine
的用法示例。
在下文中一共展示了BindingEngine.propertyObserver方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: constructor
constructor(bindingEngine: BindingEngine){
this.name = 'Vlad';
let subscription = bindingEngine
.propertyObserver(this, 'name')
.subscribe(this.nameChange);
}
示例2: recurse
private recurse(target, property, subscriptions, callback, path) {
let sub = target[property];
if (typeof sub === "object") {
for (var p in sub)
if (sub.hasOwnProperty(p)) {
this.recurse(sub, p, subscriptions, callback, `${path}${sub instanceof Array ? '[' + p + ']' : '.' + p}`);
}
}
if (target != property) // Avoid re-observice root node
{
subscriptions.push(this._bindingEngine.propertyObserver(target, property).subscribe((n, o) => callback(n, o, path)));
}
};
示例3: observe
public observe(target: Object, property: string, callback: (n: any, o: any, name: string) => void): () => void {
var subscriptions: { root: any, children: any[] } = { root: null, children: [] };
subscriptions.root = (this._bindingEngine.propertyObserver(target, property)
.subscribe((n, o) => {
this.disconnect(subscriptions.children);
let path = property;
this.recurse(target, property, subscriptions.children, callback, path);
}
)
);
return () => { this.disconnect(subscriptions.children); subscriptions.root.dispose(); }
}
示例4: subscribeProperties
subscribeProperties()
{
this.bindingEngine.propertyObserver(this, 'searchPhrase').subscribe((newValue, oldValue) => {
if (newValue.length === 0) {
this.users = [];
return;
}
if (newValue.length < 3)
return;
this.findUsersBySearchPhrase();
});
}
示例5: attached
attached(){
this.subscription = this.bindingEngine.propertyObserver(this, 'post').subscribe(this.update);
this.update(this.post);
}
示例6: observe
export function observe(object: any, property: string): PropertyObserver {
if (!__ob) {
__ob = UIUtils.lazy(BindingEngine);
}
return __ob.propertyObserver(object, property);
}