1. export class AppComponent {
    2. lists: any=[
    3. {id:1001,name:"html"},
    4. {id:1002,name:"css"},
    5. {id:1003,name:"js"}
    6. ]
    7. }
    1. <div *ngFor="let item of lists" :key="item.id">
    2. {{item.name}}
    3. </div>