我有一个自定义开关,需要同时使用forms
。
即
自定义-switch.component.html
<div class="custom-switch" [formGroup]="parentGroup">
<input id="{{ id }}" name="status" type="checkbox"
[checked]="checked"
formControlName="{{ switchName }}"
(change)="onChange($event, id)" />
<label for="{{ id }}" class="label-default" data-toggle="tooltip" data-selector="true"
data-title="Switch"></label>
</div>
自定义-switch.component.ts
import { Component, Input } from "@angular/core";
@Component({
selector : 'custom-switch',
template : 'custom-switch.component.html'
})
export class CustomSwitchComponent {
@Input('id') id : any = 'switch';
@Input('parentGroup') parentGroup : any;
@Input('switchName') switchName : any;
onChange() {
//do something
}
}
从父组件我将表单子组件的组件称为:
<custom-switch [parentGroup]="form" [switchName]="'switch'"></custom-switch>
我想用:
<custom-switch></custom-switch>
并删除
[formGroup]="parentGroup"
和
formControlName="{{ switchName }}"
表示非表单子组件。
如何动态删除formGroup
和formControlName
?因为当我尝试在非表单组件上使用它时会产生错误。
答案 0 :(得分:4)
无法有条件地添加/删除绑定。只有向DOM添加属性才能通过条件控制。
您可以使用*ngIf
在两个元素之间进行切换,其中一个元素具有绑定,另一个元素没有一个元素:
<custom-switch *ngIf="useForm" [parentGroup]="form" [switchName]="'switch'"></custom-switch>
<custom-switch *ngIf="!useForm"></custom-switch>