Axios:链接多个 API 请求
Axios: chaining multiple API requests
我需要链接来自 Google 地图 API 的一些 API 请求,我正在尝试使用 Axios 来完成。
这里是第一个请求,在componentWillMount()
axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p1)
.then(response => this.setState({ p1Location: response.data })) }
这是第二个请求:
axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p2)
.then(response => this.setState({ p2Location: response.data }))
然后我们有第三个请求,这取决于前两个是否已完成:
axios.get('https://maps.googleapis.com/maps/api/directions/json?origin=place_id:' + this.state.p1Location.results.place_id + '&destination=place_id:' + this.state.p2Location.results.place_id + '&key=' + 'API-KEY-HIDDEN')
.then(response => this.setState({ route: response.data }))
如何链接这三个调用,以便第三个调用发生在前两个调用之后?
我想你需要这样的东西:
const firstRequest = axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p1)
.then(response => this.setState({ p1Location: response.data })) }
const secondRequest = axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p2)
.then(response => this.setState({ p2Location: response.data }))
const thirdRequest = axios.get('https://maps.googleapis.com/maps/api/directions/json?origin=place_id:' + this.state.p1Location.results.place_id + '&destination=place_id:' + this.state.p2Location.results.place_id + '&key=' + 'API-KEY-HIDDEN')
.then(response => this.setState({ route: response.data }))
Promise.all([firstRequest, secondRequest])
.then(() => {
return thirdRequest
})
这与JS的Promises有关。你可以用不同的方式解决它。对我来说最简单的方法是你应该从第一个到第三个开始嵌套每个请求。这意味着从第一个请求开始,您应该将第二个 axios.get(url)
放入第一个请求的 .then()
并将第三个请求放入第二个请求的 .then()
。
对于一般的承诺,您希望在 .then()
部分承诺得到解决并且您可以访问 response
。这样通过嵌套,就可以用一种不太优雅的方式解决异步的问题。
首先,不确定您要在 componentWillMount
中执行此操作,最好在 componentDidMount
中使用它,并设置一些默认状态,这些状态将在这些请求完成后更新。其次,您想限制您编写的 setStates 的数量,因为它们可能会导致额外的重新渲染,这是一个使用 async/await:
的解决方案
async componentDidMount() {
// Make first two requests
const [firstResponse, secondResponse] = await Promise.all([
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p1}`),
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p2}`)
]);
// Make third request using responses from the first two
const thirdResponse = await axios.get('https://maps.googleapis.com/maps/api/directions/json?origin=place_id:' + firstResponse.data.results.place_id + '&destination=place_id:' + secondResponse.data.results.place_id + '&key=' + 'API-KEY-HIDDEN');
// Update state once with all 3 responses
this.setState({
p1Location: firstResponse.data,
p2Location: secondResponse.data,
route: thirdResponse.data,
});
}
你用过axios.all吗?您可以尝试类似的东西:
axios.all([axios.get(`firstrequest`),
axios.get(`secondrequest`),
axios.get(`thirdrequest`)])
.then(axios.spread((firstResponse, secondResponse, thirdResponse) => {
console.log(firstResponse.data,secondResponse.data, thirdResponse.data);
}))
.catch(error => console.log(error));
这将占用您所有的 get 并将其放入必须使用 .data 调用的响应中,例如:
firstResponse.data
聚会有点晚了,但我喜欢这种链接承诺的模式,返回它们以保持承诺链的活力。
axios
.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p1)
.then(response => {
this.setState({ p1Location: response.data });
return axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p2);
})
.then(response => {
this.setState({ p2Location: response.data });
return axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p3);
})
.then(response => {
this.setState({ p3Location: response.data });
}).catch(error => console.log(error.response));
为了更好的性能和更简洁的代码:
1、使用promise.all()或axios.all()同时执行request1和request2。所以 request2 会在不等待 request1 响应的情况下执行。 request1 和 request2 return 响应后,request3 将根据 returned 响应数据作为参数继续执行。
2.模板字符串使用反引号(``)
async componentDidMount(){
try{
const [request1, request2] = await Promise.all([
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p1}`),
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p2}`)
]);
const request3 = await axios.get(`https://maps.googleapis.com/maps/api/directions/json?origin=place_id:${request1.data.results.place_id}&destination=place_id:${request2.data.results.place_id}&key=${API-KEY-HIDDEN}`);
console.log(request3);
}
catch(err){
console.log(err)
}
}
创建 promise 数组,然后使用 reduce。
/**
* Runs promises from array of functions that can return promises
* in chained manner
*
* @param {array} arr - promise arr
* @return {Object} promise object
*/
function runPromiseInSequence(arr, input) {
return arr.reduce(
(promiseChain, currentFunction) => promiseChain.then(currentFunction),
Promise.resolve(input)
)
}
// promise function 1
function p1(a) {
return new Promise((resolve, reject) => {
resolve(a * 5)
})
}
// promise function 2
function p2(a) {
return new Promise((resolve, reject) => {
resolve(a * 2)
})
}
// function 3 - will be wrapped in a resolved promise by .then()
function f3(a) {
return a * 3
}
// promise function 4
function p4(a) {
return new Promise((resolve, reject) => {
resolve(a * 4)
})
}
const promiseArr = [p1, p2, f3, p4]
runPromiseInSequence(promiseArr, 10)
.then(console.log) // 1200
对于axios同时请求,可以使用axios.all()
加上axios.spread()
axios.spread()用于将参数数组展开成多个参数,这样所有的数据都可以传递给函数。
例子
const url_1 = '', url_2 = '';
axios.all([
axios.get(url_1),
axios.get(url_2)
])
.then(
axios.spread((resp1, resp2) => {
let id_1 = resp1.data.results.place_id
let id_2 = resp2.data.results.place_id
let url_3 = '' // <---- Build your third URL here
axios.get(url_3)
.then((resp3) => {
// You have all the data available here to useState()
})
})
)
.catch((error) => console.log(error))
我需要链接来自 Google 地图 API 的一些 API 请求,我正在尝试使用 Axios 来完成。
这里是第一个请求,在componentWillMount()
axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p1)
.then(response => this.setState({ p1Location: response.data })) }
这是第二个请求:
axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p2)
.then(response => this.setState({ p2Location: response.data }))
然后我们有第三个请求,这取决于前两个是否已完成:
axios.get('https://maps.googleapis.com/maps/api/directions/json?origin=place_id:' + this.state.p1Location.results.place_id + '&destination=place_id:' + this.state.p2Location.results.place_id + '&key=' + 'API-KEY-HIDDEN')
.then(response => this.setState({ route: response.data }))
如何链接这三个调用,以便第三个调用发生在前两个调用之后?
我想你需要这样的东西:
const firstRequest = axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p1)
.then(response => this.setState({ p1Location: response.data })) }
const secondRequest = axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p2)
.then(response => this.setState({ p2Location: response.data }))
const thirdRequest = axios.get('https://maps.googleapis.com/maps/api/directions/json?origin=place_id:' + this.state.p1Location.results.place_id + '&destination=place_id:' + this.state.p2Location.results.place_id + '&key=' + 'API-KEY-HIDDEN')
.then(response => this.setState({ route: response.data }))
Promise.all([firstRequest, secondRequest])
.then(() => {
return thirdRequest
})
这与JS的Promises有关。你可以用不同的方式解决它。对我来说最简单的方法是你应该从第一个到第三个开始嵌套每个请求。这意味着从第一个请求开始,您应该将第二个 axios.get(url)
放入第一个请求的 .then()
并将第三个请求放入第二个请求的 .then()
。
对于一般的承诺,您希望在 .then()
部分承诺得到解决并且您可以访问 response
。这样通过嵌套,就可以用一种不太优雅的方式解决异步的问题。
首先,不确定您要在 componentWillMount
中执行此操作,最好在 componentDidMount
中使用它,并设置一些默认状态,这些状态将在这些请求完成后更新。其次,您想限制您编写的 setStates 的数量,因为它们可能会导致额外的重新渲染,这是一个使用 async/await:
async componentDidMount() {
// Make first two requests
const [firstResponse, secondResponse] = await Promise.all([
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p1}`),
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p2}`)
]);
// Make third request using responses from the first two
const thirdResponse = await axios.get('https://maps.googleapis.com/maps/api/directions/json?origin=place_id:' + firstResponse.data.results.place_id + '&destination=place_id:' + secondResponse.data.results.place_id + '&key=' + 'API-KEY-HIDDEN');
// Update state once with all 3 responses
this.setState({
p1Location: firstResponse.data,
p2Location: secondResponse.data,
route: thirdResponse.data,
});
}
你用过axios.all吗?您可以尝试类似的东西:
axios.all([axios.get(`firstrequest`),
axios.get(`secondrequest`),
axios.get(`thirdrequest`)])
.then(axios.spread((firstResponse, secondResponse, thirdResponse) => {
console.log(firstResponse.data,secondResponse.data, thirdResponse.data);
}))
.catch(error => console.log(error));
这将占用您所有的 get 并将其放入必须使用 .data 调用的响应中,例如:
firstResponse.data
聚会有点晚了,但我喜欢这种链接承诺的模式,返回它们以保持承诺链的活力。
axios
.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p1)
.then(response => {
this.setState({ p1Location: response.data });
return axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p2);
})
.then(response => {
this.setState({ p2Location: response.data });
return axios.get('https://maps.googleapis.com/maps/api/geocode/json?&address=' + this.props.p3);
})
.then(response => {
this.setState({ p3Location: response.data });
}).catch(error => console.log(error.response));
为了更好的性能和更简洁的代码:
1、使用promise.all()或axios.all()同时执行request1和request2。所以 request2 会在不等待 request1 响应的情况下执行。 request1 和 request2 return 响应后,request3 将根据 returned 响应数据作为参数继续执行。
2.模板字符串使用反引号(``)
async componentDidMount(){
try{
const [request1, request2] = await Promise.all([
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p1}`),
axios.get(`https://maps.googleapis.com/maps/api/geocode/json?&address=${this.props.p2}`)
]);
const request3 = await axios.get(`https://maps.googleapis.com/maps/api/directions/json?origin=place_id:${request1.data.results.place_id}&destination=place_id:${request2.data.results.place_id}&key=${API-KEY-HIDDEN}`);
console.log(request3);
}
catch(err){
console.log(err)
}
}
创建 promise 数组,然后使用 reduce。
/**
* Runs promises from array of functions that can return promises
* in chained manner
*
* @param {array} arr - promise arr
* @return {Object} promise object
*/
function runPromiseInSequence(arr, input) {
return arr.reduce(
(promiseChain, currentFunction) => promiseChain.then(currentFunction),
Promise.resolve(input)
)
}
// promise function 1
function p1(a) {
return new Promise((resolve, reject) => {
resolve(a * 5)
})
}
// promise function 2
function p2(a) {
return new Promise((resolve, reject) => {
resolve(a * 2)
})
}
// function 3 - will be wrapped in a resolved promise by .then()
function f3(a) {
return a * 3
}
// promise function 4
function p4(a) {
return new Promise((resolve, reject) => {
resolve(a * 4)
})
}
const promiseArr = [p1, p2, f3, p4]
runPromiseInSequence(promiseArr, 10)
.then(console.log) // 1200
对于axios同时请求,可以使用axios.all()
加上axios.spread()
axios.spread()用于将参数数组展开成多个参数,这样所有的数据都可以传递给函数。
例子
const url_1 = '', url_2 = '';
axios.all([
axios.get(url_1),
axios.get(url_2)
])
.then(
axios.spread((resp1, resp2) => {
let id_1 = resp1.data.results.place_id
let id_2 = resp2.data.results.place_id
let url_3 = '' // <---- Build your third URL here
axios.get(url_3)
.then((resp3) => {
// You have all the data available here to useState()
})
})
)
.catch((error) => console.log(error))