3

我在使用 Angular 2 属性绑定时遇到了非常奇怪的行为。

首先,这是一个 Store 类:

export class Store {
    id: number;
    name: string;
    address: string;
}

这是组件代码:

export class MyBuggyComponent implements OnInit {

  stores: Store[];
  selectedStore: any;
  error: any;

  constructor(private myDataService: MyDataService) { }

  ngOnInit() {
    this.myDataService.getStores().subscribe(
      stores => this.stores = stores,
      error => { this.error = error; console.log(this.error); });
  }

  selectionChanged(value: any){
    console.log("DEBUG: " + value);
  }
}

这是让我发疯的模板!

<form>
  <div class="form-group">
    <label for="store">Select store:</label>
    <select class="form-control custom-select" id="store" name="store" required 
      [(ngModel)]="selectedStore" (change)="selectionChanged($event.target.value)">
      <option *ngFor="let s of stores" [value]="s">{{s.name}}</option>
    </select>
    <small class="form-text text-muted" *ngIf="selectedStore">Address: {{selectedStore.address}}</small>
  </div>
</form>

[value]="s"在这里,标签option的绑定<select>不起作用!它设置selectedStore为一些空对象(?),它Address:在标签中显示空文本<small>,并记录:DEBUG: [object Object]在控制台(在selectionChanged())中。但是{{s.name}}插值按预期工作(在选择框中显示名称)。

现在看这个:如果我对模板进行以下修改,它会按预期工作:

  <option *ngFor="let s of stores" [value]="s.address">{{s.name}}</option>
</select>
<small class="form-text text-muted" *ngIf="selectedStore">Address: {{selectedStore}}</small>

现在绑定有效,地址已登录控制台并<small>正确显示在标签中。所以绑定[value]="s"不起作用(实际上给出了一些奇怪的“对象”值),但绑定[value]="s.address"按预期工作。我已经关注了文档,没有提到这种限制。这是一个错误吗?还是我错过了什么?

4

2 回答 2

3

[value]仅支持字符串值作为绑定值。使用[ngValue]它,它可以绑定对象。

于 2016-11-13T20:37:28.323 回答
-1

我有同样的问题,你可以试试我的解决方案:

<select class="form-control custom-select" id="store" name="store" required 
  [(ngModel)]="selectedStore" (change)="selectionChanged($event.target.value)">
  <option *ngFor="let s of stores; let i = index" value="{{i}}">{{s.name}}</option>
</select>

// .ts
selectionChanged(value: any){
   // this.selectedStore = position in stores
   console.log(this.stores[this.selectedStore]);
}
于 2016-11-14T03:26:14.437 回答