for循环axios,同步请求,构建Echarts表格
构建Echarts时需要等数据全部获取完成再生成表格
这里数据需要从四个接口取
然后Echarts还涉及到顺序问题,不能直接axios这个读取的快的就先出来了。
故采用axios同步写法
axios用async包起来,注意要return,axios本身就是一个promise
async function getGDData(tuceng) {
return await axios.get(`/dxgd/guandian/` + tuceng)
.then(res => {
dataArr.push(res.data);
dataY.push(res.data.length);
}).catch(err => {
console.log(err);
})
}
循环中await axios,然后再构表格
(async ()=> {
for (i of tucengArr) {
await getGDData(i)
}
t = echarts.init(document.getElementById("echartsView"), "dark");
d = getOption();
t.setOption(d);
})();