Я попытался найти способ вызова нескольких API.потому что все мои семь API (ов) должны иметь доступ к одному и тому же файлу.поэтому он не может вызывать одновременно.
Я пытался обещать .all (), но он не работает.
Я пытался axios.then (axios.get (что-то).then)) (axios.get ( "что-то"), а затем ().);это также не работает.
let requests = [];
requests.push(axios.post(endpoint, data));
requests.push(axios.get(`http://localhost:8080/uploadpersonfile`));
requests.push(axios.get(`http://localhost:8080/uploadcedatafile`));
requests.push(axios.get(`http://localhost:8080/uploadforenseqfile`));
requests.push(axios.get(`http://localhost:8080/uploadforenseqxfile`));
requests.push(axios.get(`http://localhost:8080/uploadforenseqyfile`));
requests.push(axios.get(`http://localhost:8080/uploadisnpsfile`));
Promise.all(requests);
это еще одна попытка.
axios
.post(endpoint, data)
.then(res => {
console.log(res)
}).then(
axios.get(`http://localhost:8080/uploadpersonfile`)
.then(res => {
console.log(res)
})).then(
axios.get(`http://localhost:8080/uploadcedatafile`)
.then(res => {
console.log(res)
})).then(
axios.get(`http://localhost:8080/uploadforenseqfile`)
.then(res => {
console.log(res)
})).then(
axios.get(`http://localhost:8080/uploadforenseqxfile`)
.then(res => {
console.log(res)
})).then(
axios.get(`http://localhost:8080/uploadforenseqyfile`)
.then(res => {
console.log(res)
})).then(
axios.get(`http://localhost:8080/uploadisnpsfile`)
.then(res => {
console.log(res)
}))