承诺拒绝:模板解析错误:

时间:2017-04-25 17:17:57

标签: angular ng-bootstrap

我想基于ng-bootstrapangular2添加到我的项目中。当我尝试使用模态组件时,我有错误

  

“let-”仅在模板元素上受支持。 (“] let-part let-isOdd =”odd“> {{part}}

哪里可能有问题?

1 个答案:

答案 0 :(得分:0)

我想,你正在使用ngFor,想要声明一些局部变量,你可以使用以下公式之一:

<li *ngFor="let item of items; let i = index; let isOdd = odd; trackBy: trackByFn">
  // do something
</li>

Angular 4,你可以这样做:

<li *ngFor="let item of items; index as i; odd as isOdd; trackBy: trackByFn">
  // do something
</li>

请查看此文档: https://angular.io/docs/ts/latest/api/common/index/NgFor-directive.html