如何通过列表和 return 的答案创建一个 get 调用循环 (axios)
How to create a loop of get calls (axios) through a list and return the answer of all
如何通过列表创建 get 调用循环和return 所有人的答案。
const axios = require('axios');
const id = ['234','9887']
axios.get(`https://myapi/api/id/${id}`, {
method: 'GET',
headers:{'xxxxxxxxxx': 'xxxxxxxxxxx',
}})
.then(function (response = response.json()) {
// handle success
console.log = (response.data)
})
.catch(function (error) {
// handle error
console.log(error);
})
我想这就是你要找的。
我已经把你的假API换成真了,你可以测试一下。
const axios = require('axios');
const id = ['234','9887']
const promArr = id.map(
id =>
axios.get(
`https://postman-echo.com/get?key=${1234}`,
{
method: 'GET',
headers:{'xxxxxxxxxx': 'xxxxxxxxxxx',}
}
)
)
Promise.all(promArr)
.then(function (responses) {
// handle success
responses.map(response => console.log(response.data))
})
.catch(function (error) {
// handle error
console.log(error);
})
如何通过列表创建 get 调用循环和return 所有人的答案。
const axios = require('axios');
const id = ['234','9887']
axios.get(`https://myapi/api/id/${id}`, {
method: 'GET',
headers:{'xxxxxxxxxx': 'xxxxxxxxxxx',
}})
.then(function (response = response.json()) {
// handle success
console.log = (response.data)
})
.catch(function (error) {
// handle error
console.log(error);
})
我想这就是你要找的。
我已经把你的假API换成真了,你可以测试一下。
const axios = require('axios');
const id = ['234','9887']
const promArr = id.map(
id =>
axios.get(
`https://postman-echo.com/get?key=${1234}`,
{
method: 'GET',
headers:{'xxxxxxxxxx': 'xxxxxxxxxxx',}
}
)
)
Promise.all(promArr)
.then(function (responses) {
// handle success
responses.map(response => console.log(response.data))
})
.catch(function (error) {
// handle error
console.log(error);
})