2

我正在尝试获取要在响应式表单提交时发送的更改事件下拉列表的选定值。我有一个非常相似的场景适用于无线电,基于如何以反应形式获取选定无线电值的答案

这是下拉菜单的代码

<div class="row" *ngIf="question.controls.type.value === 'dropdown'">
   <div class="col-md-12">
    <div class="form-group__text select">
      <label for="type">{{ question.controls.label.value }}</label>
      <br><br>
      <select name="value" formArrayName="component" (change)="updateSelection(question.controls.component.controls, $event.target)">
        <option
          *ngFor="let answer of question.controls.component.controls; let j = index" [formGroupName]="j"
          [ngValue]="answer?.value?.value">
            {{answer?.value?.value}}
        </option>
      </select>
    </div>
  </div>
 </div>

在从下拉列表中更改所选选项时,我无法将答案作为 formcontrol 传递给 updateSelection。任何帮助是极大的赞赏。

https://stackblitz.com/edit/angular-acdcac

4

1 回答 1

2

与上一个问题非常相似,我们迭代数组中的表单控件,最初将所有设置为false,然后将选择的选项设置为true。所以模板让我们通过$event.target.value

<select name="value" formArrayName="component" 
   (change)="updateSelection(question.controls.component.controls, $event.target.value)">
    <option *ngFor="let answer of question.controls.component.controls; let j = index" [formGroupName]="j"
       [ngValue]="answer?.value?.value">
       {{answer?.value?.value}}
  </option>
</select>

并且在我们提到的组件中迭代表单控件并将所有设置为false. 的值$event.target.value将是字符串值,例如Choice 1。然后我们搜索具有该值的表单控件,然后为该特定表单组设置布尔值:

updateSelection(formArr, answer) {
  formArr.forEach(x => {
    x.controls.selectedValue.setValue(false)
  })
  let ctrl = formArr.find(x => x.value.value === answer)
  ctrl.controls.selectedValue.setValue(true)
}

你的分叉StackBlitz

于 2018-01-30T17:44:02.113 回答