我看到this StackOverflow question显示了如何绑定到包含函数的字段:
@NgComponent(
selector: 'mycomp',
publishAs: 'ctrl',
map: const {
'myfunc' :'&myfunc'
}
)
class MyComponent {
Function myfunc;
但是,建议使用注释来声明绑定的字段以及方式。我看到@NgOneWay
(=>
)和其他人,但我没有看到&myfunc
的注释。
我应该使用什么注释?