接口数据传给this.chartData,但是在created和mounted都无法访问到它。
created
先执行341行没有数据,async await
,$nextTick
,定时器
都试过了,加载不出来。
我这些数据是传给echarts的。
接口:
// 获取数据
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为
`
created mounted
`
执行的时候数据还没返回回来