禁用角反应形式的字段(Disable a field in angular reactive for

2019-09-25 23:23发布

在我的角度6的应用程序,我想提出,其具有反应性形式,

HTML

<form [formGroup]="form">

    <h2>Click the add button below</h2>
    <button (click)="addCreds()">Add</button>
    <div formArrayName="credentials" >
      <div *ngFor="let creds of form.get('credentials').controls; let i = index" 
          [formGroupName]="i" style="display: flex">
          <select formControlName="action">
             <option *ngFor="let option of options" value="{{option.key}}">
               {{option.value}} 
             </option>
          </select>
          <input placeholder="Name" formControlName="name">
<div *ngIf="creds.value.action=='set' ||
      creds.value.action=='go'">
                   <input placeholder="Label" formControlName="label">
          </div>
      </div>
    </div>
    </form>

在这里,我已经使用

<div *ngIf="creds.value.action=='set' || creds.value.action=='go'"> <input placeholder="Label" formControlName="label"> </div>

这将显示的字段label ,如果条件为真,否则它不会被显示。

但我只需要禁用场,不应该将其彻底删除..

为此,我已经尽力了,

<input [disabled]="creds.value.action != 'set' || creds.value.action != 'go' " placeholder="Label" formControlName="label">

但它没有工作。

Stackblitz与* ngIf https://stackblitz.com/edit/angular-form-array-example-25y1ix

Stackblitz残疾 https://stackblitz.com/edit/angular-form-array-example-laftgu

请帮助我如何禁用label字段,如果所选择的action (第一个下拉列表)值wait ..

Answer 1:

只要创建一个CSS类:

.disabled {
  pointer-events:none;
  background-color: #D3D3D3;
}

一个方法添加到您的组件:

getValueByIndex(index) {
  const actionValue = ( < FormArray > this.form.get('credentials')).at(index).value.action;
  return actionValue !== 'set' && actionValue !== 'go';
}

在模板中使用此方法:

<input 
    [class.disabled]="getValueByIndex(i)" 
    placeholder="Label" 
    formControlName="label">

这里有一个工作示例StackBlitz您参考。


更新:

或者,你可以做到以下几点:

使label默认是禁用的领域:

addCreds() {
  const creds = this.form.controls.credentials as FormArray;
  creds.push(this.fb.group({
    action: '',
    name: '',
    label: {
      value: '',
      disabled: true
    },
    state: 'na'
  }));
}

然后听(ngModelChange)在表格上的事件更新标签字段的状态:

<select 
  formControlName="action"
  (ngModelChange)="($event === 'set' || $event === 'go') ? creds.controls.label.enable() : creds.controls.label.disable()">
  <option 
    *ngFor="let option of data" 
    [value]="option.key">
    {{option.value}} 
  </option>
</select>

这里有一个工作示例StackBlitz这种方法。


由于A.Winnen为他的使用之前的方法对性能的影响的评论。



Answer 2:

在反应形式,你不能使用禁用指令。 相反,你需要通过调用启用()或禁用()函数来禁用formControl的“被动的方式”。

addCreds() {
    const creds = this.form.controls.credentials as FormArray;
    const newGroup = this.fb.group({
      action: '',
      name: '',
      label: ''
    });
    newGroup.controls.action.valueChanges.subscribe((currentAction) => {
      if (typeof currentAction === "string" && currentAction.toLowerCase() === 'wait') {
        newGroup.controls.label.disable();
      } else {
        newGroup.controls.label.enable();
      }
    });
    creds.push(newGroup);
  }

我修改您的stackblitz例如: https://stackblitz.com/edit/angular-form-array-example-ymysw4



文章来源: Disable a field in angular reactive form