我有一个名为custom-element的自定义元素,我把它放在模板A中(带有控制器A)
export class CustomElem {
@bindable onCompleted;
........
}
而updateDescription()是控制器A的一个功能.
export class A {
updateDescription(){
....
}
}
如何使用custom-element调用updateDescription()?
使用call
binding命令提供对自定义元素的函数调用的引用:
要updateDescription
使用参数调用方法,可以执行以下操作:
export class CustomElem {
@bindable onCompleted;
...
fooBarBaz() {
var args = {
something: 'A',
somethingElse: 'B',
anotherArg: 'C'
};
this.onCompleted(args);
}
}