是否可以在另一个axios响应中使用axios发布请求?

时间:2019-06-20 23:51:14

标签: javascript axios

是否可以做这样的事情,还是做这件事的另一种方法?

axios.post("/url/url", data)
    .then(response => {
        //some functions with data from response to make newData;
        axios.post("/someurl/", newData)
            .then(response => {
                //some functions         
            })            
});

0 个答案:

没有答案