How to save JWT to localStorage

天大地大妈咪最大 提交于 2021-02-20 03:49:40

问题


I am using Angular-satellizer extension for the login/register feature but I am stuck at number 7. I cant save JWT to localStorage. I checked the developer tools in chrome but there is no token.

.controller('loginCtrl', function($scope, $state, $auth, jwtHelper, $window) {
$scope.login = function() {

  $auth.login($scope.user)

    .then(function(response) {

    var gelenToken = response.data;

    var tokenPayload = jwtHelper.decodeToken(gelenToken.token);

    console.log(JSON.stringify(tokenPayload)); // Output:{"sub":"1","iat":1496346513,"exp":1497556113,"data":{"role":"admin"}}

    $window.localStorage.setItem('token', JSON.stringify(tokenPayload));

    $state.go('baba.manga');
    })
};
})

回答1:


You can use both :

localStorage.setItem('token', data.token);

or

$window.localStorage.token = JSON.stringify(data.token);

If it's getting deleted on page refresh then you need to check if you have reset the localStorage somewhere or some script is doing it




回答2:


I'm using the JWT with Angular 4 and Node JS in the backend. I don't think u need to use $window.

  ......
  data => {  
    localStorage.setItem('token', data.token);
    localStorage.setItem('userId', data.userId);
    this.router.navigateByUrl('/');
  },
  ......

This should work, if not please the link to the plunker/git, I'll take a look.



来源:https://stackoverflow.com/questions/44317486/how-to-save-jwt-to-localstorage

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!