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