无法绑定到' ngForOf'因为它不是'tr' tr'的已知属性。

时间:2017-12-17 17:12:25

标签: angular

我已经看到了很多答案,我想我已经遵循了所有给出的建议,但对于我的生活,我无法弄清楚什么是错过的。我已经将CommonModule导入到我的模块并导出了组件但仍然没有。

我有第二个模块:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { EmployeedbComponent } from './employeedb.component';


@NgModule({
  imports: [
    CommonModule
  ],
  exports: [EmployeedbComponent],
  declarations: [EmployeedbComponent]
})
export class EmployeedbModule { }

我的组件只有一个名为items的数组。

我的HTML是:

<tr *ngFor="let item of items">


         </tr>

1 个答案:

答案 0 :(得分:0)

将BrowserModule添加到导入: @NgModule() 中的[], BrowserModule 应导入应用模块,其他模块 CommonModule

@NgModule({
  imports: [BrowserModule]
  ..
})