我想访问react js代码中的标头。 我从后端公开了一个API,并与标题一起向浏览器发送令牌。
我正在使用来自ReactJs axios的API。那么如何在Reactjs中访问此标头
axios.post(ConstClass.BASE_URL + '/login', this.state).then((response) => {
console.log(response.headers);
}).catch((error) => {
this.setState({
errorMessage : 'Invalid username and password.'
});
});