提问人:Qamber 提问时间:7/16/2020 最后编辑:Qamber 更新时间:7/16/2020 访问量:138
Axios 在杀死应用程序 React-Native 后不附加标头
Axios not attaching headers after killing app React-Native
问:
AsyncStorage.getItem('@cookie').then((token)=>{
console.log('Toekn' , token);
const Kit = axios.create({
headers:{
'Content-Type': 'application/json',
'Accept': 'application/json',
'Set-Cookie' : token
},
withCredentials: true
});
Kit.interceptors.request.use(
config => {
console.log(
`%c ${JSON.stringify(config)}`,
'color: #0086b3; font-weight: bold',config,);
return config;
},error => Promise.reject(error),
);
// Intercept
Kit.post('http://myadmin.com/Patient/CaseCalender')
.then(res => {
console.log('data',res)
if(res.data.length >0 ){
this.setState({isLoading: false});
var _data = JSON.parse(res.data);
this.setState({
data: _data
});
}
else{
this.setState({isLoading: false});
}
})
.catch(error => {
console.log(error.response,'check error');
this.setState({isLoading: false});
});
})
我正在使用 axios 在 react-native 中调用我的 api,如果杀死应用程序,我的代码在杀死应用程序之前工作正常,在杀死应用程序 axios 后没有在其配置中附加 cookie 标头。 请帮我解决这个问题。
答: 暂无答案
评论