如何在reactjs中访问自定义标头

时间:2018-06-23 06:29:30

标签: javascript reactjs api axios response-headers

我想访问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.'
       });
   });

enter image description here

0 个答案:

没有答案