标签: angular dart components
我尝试在OnInit方法中实例化一个输入组件:
OnInit
<my-component [myInput]="myInput"></my-component>
在my-component中,myInput始终为null,因为它未在构造函数中实例化,而是在OnInit方法中实例化。我无法在构造函数中实例化它,因为我需要调用异步方法,这在构造函数中是不允许的。
myInput
感谢您的帮助。
答案 0 :(得分:0)
如果我理解正确,Angular2 Tutorial for Dart几乎可以完全满足您的需求。
Direct link to the code