将 Header 添加到 window.location.pathname
Add Header to window.location.pathname
我正在为应用程序设置身份验证。在我发出 post 登录请求后,会发送一个 JSON Web 令牌作为响应。我可以通过 Ajax 将其附加到 header。问题是在登录后使用 window.location.pathname 重定向时,因为它不是 Ajax 请求,所以它没有附加到 header 的令牌。我该如何解决这个问题?
$.ajaxSetup({
headers: {
'x-access-token': window.localStorage.jwt
}
});
var Auth = {
signup: function () {
console.log('signuppp');
var userSignup = {
username: $('#usernameSignup').val(),
password: $('#passwordSignup').val()
};
console.log(userSignup)
return $.post('/api/users/register', userSignup, function (resp) {
console.log('resp: ',resp);
window.localStorage.setItem('jwt', resp.token);
//does not have x-access-token header
window.location.pathname = '/';
})
},
简短的回答是:您不能使用 window.location
.
设置 HTTP headers
我正在为应用程序设置身份验证。在我发出 post 登录请求后,会发送一个 JSON Web 令牌作为响应。我可以通过 Ajax 将其附加到 header。问题是在登录后使用 window.location.pathname 重定向时,因为它不是 Ajax 请求,所以它没有附加到 header 的令牌。我该如何解决这个问题?
$.ajaxSetup({
headers: {
'x-access-token': window.localStorage.jwt
}
});
var Auth = {
signup: function () {
console.log('signuppp');
var userSignup = {
username: $('#usernameSignup').val(),
password: $('#passwordSignup').val()
};
console.log(userSignup)
return $.post('/api/users/register', userSignup, function (resp) {
console.log('resp: ',resp);
window.localStorage.setItem('jwt', resp.token);
//does not have x-access-token header
window.location.pathname = '/';
})
},
简短的回答是:您不能使用 window.location
.