我在使用 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"
按预期工作。我已经关注了文档,没有提到这种限制。这是一个错误吗?还是我错过了什么?