我不能接受,请帮忙。我已经使用了response.headers
,但没有给我令牌。
这是我的代码
fetch(`${config.BASE_URL}/login`, {
method: 'POST',
headers: h,
mode: 'cors',
body: JSON.stringify(
request
),
})
.then(response => {
console.log(response)
console.log("response", response.headers.get("Token"))
return response.text();
})
.then(data => {
console.log("data", data)
})
.catch(error => console.error('Error:', error))