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

发布于 2022-09-12 13:24:38 字数 540 浏览 26 评论 0

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)
},
  

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

老子叫无熙 2022-09-19 13:24:38

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

 findList(name) {
      this.$api.overview.findZone({
        city: name || this.city || '安徽省',
      }).then((data) => {
        this.chartData = data;
       可以在 在这里面初始化echarts
      });
    },
你曾走过我的故事 2022-09-19 13:24:38
findList(name) {
      return this.$api.overview.findZone({
        city: name || this.city || '安徽省',
      }).then((data) => {
        this.chartData = data;
      });
    }
mounted(){
    this.findList().then(() => {
        console.log(this.chartData)
    })
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文