Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
3.4k views
in Technique[技术] by (71.8m points)

接口数据传给this.chartData,但是在created和mounted都无法访问到它。

created 先执行341行没有数据,async await , $nextTick , 定时器都试过了,加载不出来。
我这些数据是传给echarts的。
image.png

接口:

 // 获取数据
    findList(name) {
      this.$api.overview.findZone({
        city: name || this.city || '安徽省',
      }).then((data) => {
        this.chartData = data;
      });
    },
created() {
    console.log(this.chartData)
},
mounted(){
    console.log(this.chartData)
},
  

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

因为`
created mounted`执行的时候数据还没返回回来

 findList(name) {
      this.$api.overview.findZone({
        city: name || this.city || '安徽省',
      }).then((data) => {
        this.chartData = data;
       可以在 在这里面初始化echarts
      });
    },

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...