for循环axios,同步请求,构建Echarts表格

Posted 张翀588

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
    })();

以上是关于for循环axios,同步请求,构建Echarts表格的主要内容,如果未能解决你的问题,请参考以下文章

解决axios通过for循环向同一个接口发送请求后渲染出现的问题

for 循环中的 axios.get().then()

axios提交表单后发送的请求过多

axios 模拟同步请求

js中for循环里面有异步请求怎么解决

循环中使用同步请求