我正在使用 Angular2 2.1.0。当我想显示公司列表时,出现此错误。
2.1.0
在file.component.ts:
file.component.ts
public companies: any[] = [ { "id": 0, "name": "Available" }, { "id": 1, "name": "Ready" }, { "id": 2, "name": "Started" } ];
在file.component.html:
file.component.html
<tbody> <tr *ngFor="let item of companies; let i =index"> <td>{{i}}</td> <td>{{item.name}}</td> </tr> </tbody>
如果它是根模块 ( ),则添加BrowserModule到imports: []in ,否则.@NgModule()``AppModule``CommonModule
BrowserModule
imports: []
@NgModule()``AppModule``CommonModule
// older Angular versions // import {BrowserModule, CommonModule} from '@angular/common'; import { BrowserModule } from '@angular/platform-browser' .. .. @NgModule({ imports: [BrowserModule, /* or CommonModule */], .. })