我有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时,如何创建可重用组件?对此有什么解决方法吗?