1.在组件下面新建一个data.ts文件,将数据放进去

  1. var cartList:object[]= (数据)
  2. export default cartList; //导出一下

2.在要使用数据的组件的.ts文件中导入data.ts

  1. import { Component, OnInit } from '@angular/core';
  2. import cartList from './data'; //导入
  3. ...
  4. export class HeaderComponent implements OnInit {
  5. public msg:string='hello world';
  6. public checked:boolean=true;
  7. public cartList:any=cartList; //定义数据类型
  8. constructor() {
  9. console.log(cartList) //可以打印看一下有没有
  10. }
  11. ...
  12. }

3..html页面使用

  1. <div *ngFor="let item of cartList">
  2. {{item.productName}}
  3. </div>