动态添加和删除angular 2自定义子组件中的formGroup

时间:2017-01-04 09:16:40

标签: angular angular2-template angular2-forms

我有一个自定义开关,需要同时使用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 }}"

表示非表单子组件。

如何动态删除formGroupformControlName?因为当我尝试在非表单组件上使用它时会产生错误。

1 个答案:

答案 0 :(得分:4)

无法有条件地添加/删除绑定。只有向DOM添加属性才能通过条件控制。

您可以使用*ngIf在两个元素之间进行切换,其中一个元素具有绑定,另一个元素没有一个元素:

<custom-switch *ngIf="useForm" [parentGroup]="form" [switchName]="'switch'"></custom-switch>
<custom-switch *ngIf="!useForm"></custom-switch>