我正在做一个聊天应用。我有以下问题:当我向服务器的响应发送请求时,不包含任何标头。我想检查令牌的一些标头,但该标头为空。
当我以前是邮递员时,我在标题中看到了令牌。但是,当我在JavaScript中使用提取API时,看不到令牌。
static async userLogin(username,password){
const url = `http://localhost:9090/api/authenticate?username=${username}&password=${password}`;
await fetch(url).then(response => console.log(response));
}
图像: