将标题添加到window.location.pathname

时间:2016-03-13 04:36:33

标签: javascript jquery ajax authentication jwt

我正在为应用设置身份验证。在我发布登录请求后,会发送JSON Web令牌作为响应。我可以通过Ajax将它附加到标头。问题是在登录后使用window.location.pathname重定向,因为它不是Ajax请求,它没有将标记附加到标头。我该如何解决这个问题?

$.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 = '/';
    })
  },

1 个答案:

答案 0 :(得分:3)

简短回答是:您无法使用window.location设置HTTP标头。

Adding http headers to window.location.href in Angular app