我正在从一个通用函数进行所有 API 调用,并且在某些响应中,出现了一个自定义响应标头。使用此标头,我需要进行另一个 API 调用。这可以通过使用 Redux 中间件来实现吗?
// function 1
return ApiCaller.post('url').then(json => {
dispatch(someAction(json));
})
// function 2
return ApiCaller.post('anotherurl').then(json => {
dispatch(someOtherAction(json));
})
// ApiCaller
fetch(url).then(response => {
// before this I want to make another post call with data as response
// header 'x' value
return response;
}
在中间件中,我想从响应标头中读取一个密钥并进行另一个 API 调用,这可能吗?