如何在具有匹配ID的字段的另一个组件内使用可重用组件

时间:2018-03-02 11:26:01

标签: angular components

我有2个组件。主要组件和popUpComponent。我在主要组件中使用popUpComponent。 主要组件中有一个表单,在此表单中有一个带有 id =“active”的复选框。

ng-selected

在我的弹出组件中(可以重复使用)。我还有另一个复选框, ID为“有效”

<input class="switch-input" [disabled]="pageStatus==4" [ngModel]="role.active"  name="active" id="active" type="checkbox" >

我从chrome得到以下错误。

<input class="switch-input" [ngModel]="popup.active"  name="active" id="active" type="checkbox" >

我的问题是,当我不知道主要组件是否包含字段ID时,如何创建可重用组件?对此有什么解决方法吗?

0 个答案:

没有答案