小编典典

无法绑定到“ngForOf”,因为它不是“tr”的已知属性(最终版本)

all

我正在使用 Angular2 2.1.0。当我想显示公司列表时,出现此错误。

file.component.ts

public companies: any[] = [
    { "id": 0, "name": "Available" },
    { "id": 1, "name": "Ready" },
    { "id": 2, "name": "Started" }
];

file.component.html

<tbody>
  <tr *ngFor="let item of companies; let i =index">
     <td>{{i}}</td>
     <td>{{item.name}}</td>
  </tr>
</tbody>

阅读 88

收藏
2022-06-13

共1个答案

小编典典

如果它是根模块 ( ),则添加BrowserModuleimports: []in
,否则.@NgModule()``AppModule``CommonModule

// older Angular versions
// import {BrowserModule, CommonModule} from '@angular/common';

import { BrowserModule } from '@angular/platform-browser'
..
..
@NgModule({
  imports: [BrowserModule, /* or CommonModule */],
  ..
})
2022-06-13