具有多个嵌套组件的角度2向绑定

时间:2019-01-17 11:29:48

标签: angular typescript two-way-binding nested-controls

我是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>

还是有更好的方法来实现这一目标?

0 个答案:

没有答案