这可能是由于未正确导入*ngFor指令或使用错误的语法导致的。确保在组件中正确导入“CommonModule”和“BrowserModule”,以及在HTML模板中正确使用语法。以下是正确的示例:
HTML模板:
- {{ item }}
组件:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
items: string[] = ['item1', 'item2', 'item3'];
}
上一篇:Angular循环遍历图片
下一篇:Angular循环迭代器