如何获取api响应返回的标头变量?

时间:2019-05-17 13:56:55

标签: javascript reactjs api header axios

我有正确返回的api,我需要从标头中检索令牌,但是在response.header中,该令牌不仅仅包含其他信息,例如状态,缓存和其他信息,而我的令牌仅显示在Access -Token中的控制台网络,如何直接从响应头中检索此令牌?

Response Headers in Network Result of api

           async function postLogin() {
            const jsonLogin = {
                email: EmailUser,
                password: SenhaUser
            }
            const resultJson = JSON.stringify(jsonLogin)
            var headers = {
                'Content-Type': 'application/json'
            }
            if (!EmailUser || !SenhaUser) {
                alert("Preencha e-mail e senha para continuar!")
            } else {
                try {
                    const response = await api.post("/authentications", resultJson, { headers: headers });
                    console.log(response)
                } catch (err) {
                    alert("Houve um problema com o login, verifique suas credenciais.")
                }
            }
        }

如何获取此令牌?

0 个答案:

没有答案