升级到 Angular 2 Rc.5 后出现此错误。这是我的组件模板:
<md-input
[(ngModel)]="recipient"
name="recipient"
placeholder="Name"
class="col-sm-4"
(blur)="addRecipient(recipient)">
</md-input>
我的 app.module.ts 导入FormsModule
我也尝试private recipient;
在我的组件中声明。
我错过了什么吗?为什么我会收到此错误?
No value accessor for form control with name: 'recipient'