标签: angular model-binding angular-ngmodel
如果我在组件的模板中执行类似:
<input [(ngModel)]="myProperty"></input>
然后它可以工作,但如果我使用我的组件中的函数执行它不会:
<input [(ngModel)]="getMyProperty()"></input>
Here是傻瓜。在RC6上测试过。为什么呢?
答案 0 :(得分:16)
尝试这种结构
<input [ngModel]="getMyProperty()"></input>