我已经看到了很多答案,我想我已经遵循了所有给出的建议,但对于我的生活,我无法弄清楚什么是错过的。我已经将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>
答案 0 :(得分:0)
将BrowserModule添加到导入: @NgModule()
中的[], BrowserModule
应导入应用模块,其他模块 CommonModule
@NgModule({
imports: [BrowserModule]
..
})