是否可以做这样的事情,还是做这件事的另一种方法?
axios.post("/url/url", data)
.then(response => {
//some functions with data from response to make newData;
axios.post("/someurl/", newData)
.then(response => {
//some functions
})
});