所以我尝试[(ngModel)]这样使用:
<div class="items">
<tbody>
<tr *ngFor="let account of this.accounts">
<td>
<input type="checkbox" [(ngModel)]="this.account.name.selected" name="account">
{{account.name}}
</td>
</tr>
</tbody>
</div>
Myaccounts已创建并填充组件:accounts: Account[] = [];
我的Account对象:
export class Account {
name: string;
surname: string;
}
我越来越ERROR TypeError: Cannot create property 'selected' on string 'John'
我看到了这个帖子:Cannot create property 'selected' on string 'Information Technology' angularjs但不太明白如何将提到的修复应用于我的案例,也许是因为我使用的是 Angular 而不是 AngularJS。如果有人能帮助理解这里的问题,我会很高兴吗?
至尊宝的传说
相关分类