本文整理汇总了TypeScript中aurelia-framework.BindingEngine类的典型用法代码示例。如果您正苦于以下问题:TypeScript BindingEngine类的具体用法?TypeScript BindingEngine怎么用?TypeScript BindingEngine使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了BindingEngine类的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: constructor
constructor(bindingEngine: BindingEngine){
this.name = 'Vlad';
let subscription = bindingEngine
.propertyObserver(this, 'name')
.subscribe(this.nameChange);
}
示例2: observe
export function observe(object: any, property: string): PropertyObserver {
if (!__ob) {
__ob = UIUtils.lazy(BindingEngine);
}
return __ob.propertyObserver(object, property);
}
示例3: 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)));
}
};
示例4: 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(); }
}
示例5: subscribeProperties
subscribeProperties()
{
this.bindingEngine.propertyObserver(this, 'searchPhrase').subscribe((newValue, oldValue) => {
if (newValue.length === 0) {
this.users = [];
return;
}
if (newValue.length < 3)
return;
this.findUsersBySearchPhrase();
});
}
示例6: attached
attached(){
this.subscription = this.bindingEngine.propertyObserver(this, 'post').subscribe(this.update);
this.update(this.post);
}