12

我正在尝试使用 Angular2 语法从枚举定义创建单选按钮,并将值绑定到具有该枚举类型的属性。

我的 html 包含:

<div class="from_elem">
    <label>Motif</label><br>
    <div  *ngFor="let choice of motifChoices">
        <input type="radio" name="motif" [(ngModel)]="choice.value"/>{{choice.motif}}<br>
    </div>
</div>

在我的@Component 中,我声明了一组选项和值:

private motifChoices: any[] = [];

在我的@Component 的构造函数中,我通过以下方式填写了选项:

constructor( private interService: InterventionService )
{
    this.motifChoices =
        Object.keys(MotifIntervention).filter( key => isNaN( Number( key )))
            .map( key => { return { motif: key, value: false } });
}

单选按钮显示正确,现在我试图将选定的值绑定到属性。但是当我单击其中一个按钮时,值choice.value 设置为未定义。

4

2 回答 2

23

好的,我终于找到了解决方案。我目前正在使用 Angular 2 RC5。

我想绑定我的收音机的枚举值是属性:

intervention.rapport.motifIntervention : MotifInterventions

在我的@Component 中,我声明了私有成员以允许访问 html 模板中的枚举定义:

export class InterventionDetails
{
    private MotifIntervention = MotifIntervention;
    private MotifInterventionValues = Object.values(MotifIntervention).filter( e => typeof( e ) == "number" );

    // model object:
    private intervention: Intervention;

这是单选按钮的 HTML 代码:

<div *ngFor="let choice of MotifInterventionValues">
    <input type="radio"
           [(ngModel)]="intervention.rapport.motifIntervention"
           [checked]="intervention.rapport.motifIntervention==choice"
           [value]="choice" />
    {{MotifIntervention[choice]}}<br>
</div>
  • [(ngModel)]="intervention.rapport.motifIntervention"是双向绑定,需要更新模型中的属性(在我的情况下intervention.rapport.motifIntervention

  • [checked]="intervention.rapport.motifIntervention==choice"如果值intervention.rapport.motifIntervention 被外部修改,则需要更新单选按钮组件。

  • [value]="choice"是选择单选按钮时分配给我的属性的值。

  • {{MotifIntervention[choice]}}是单选按钮的标签

于 2016-09-08T16:57:26.847 回答
1

聚会有点晚了,但这对我有用:

  <tr *ngFor="let Item of Items; let idx = index" style="line-height: 10px;">
    <td style="font-size:11px;padding-right: 10px;">{{ GetOption(Item) }}</td>                      
    <td><input type="radio" [attr.name]="ComponentID" [id]="ComponentID"
      [value]="GetValue(Item)" [checked]="value == GetValue(Item)" (change)="SelectionChange(GetValue(Item))"></td>           
  </tr>

在哪里:

  • Items 是一系列选项
  • ComponentID 是组件的名称
  • GetOption 是一个返回选项应该使用的标题的函数
  • GetValue 是一个函数,它返回选项应该使用的值
  • SelectionChanged 用于更新模型

请注意,我不使用 [(ngModel)]

于 2018-05-15T00:13:41.870 回答