我看到 this StackOverflow question 显示了如何绑定(bind)到包含函数的字段:
@NgComponent(
selector: 'mycomp',
publishAs: 'ctrl',
map: const {
'myfunc' :'&myfunc'
}
)
class MyComponent {
Function myfunc;
但是,建议使用注释来声明绑定(bind)哪些字段以及如何绑定(bind)。我看到
@NgOneWay
( =>
) 和其他人,但我没有看到 &myfunc
的注释。我应该使用什么注释?
最佳答案
好的,刚刚看到您为此创建了一个新问题:
对于回调 &
使用 @NgCallback
关于dart - map : const {'foo' :'&foo' } in AngularDart? 的注解等价物是什么,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21422866/