我是angular的新手,我想使用角度2向绑定到嵌套组件进行内容编辑。这是没有2向绑定的结构。
parentModule.ts
this.contactList : Array[contact] =[];
parenModule.html
<div *ngFor="let contact of contactList">
<app-contactCard [contact ]='contact '></app-contactCard>
</div>
nestedModule.ts
@Input() contact : contact;
nestedModule.Html
<div>{{this.contact.firstname}}- {{this.contact.firstname}}
是否可以在此处添加2向绑定并从嵌套组件写入父级联系人数组?
赞:
<input [(ngModel)]="this.contact.firstname"></input>
还是有更好的方法来实现这一目标?