A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

2.3 前端请求jwt
2.3.1 需求分析
前端需求如下:
用户登录成功,前端请求认证服务获取jwt令牌。
前端解析jwt令牌的内容,得到用户信息,并将用户信息存储到sessionStorage。 从 sessionStorage取出用户信息在页头显示用户名称。 2.3.2 API方法
在login.js中定义getjwt方法:
[AppleScript] 纯文本查看 复制代码
/*获取jwt令牌*/ const getjwt = () => { 
    return requestGet('/openapi/auth/userjwt');
 }

2.3.3 页面
修改include/header.html
1、页面视图

[AppleScript] 纯文本查看 复制代码
<span v‐if="logined == true">欢迎{{this.user.username}}</span> 
<a href="javascript:;" @click="logout" v‐if="logined == true">退出</a>
 <a href="http://ucenter.xuecheng.com/" class="personal" target="_blank">我的学习</a> 
<a href="javascript:;" @click="showlogin" v‐if="logined == false">登陆 | 注册</a> 
<a href="http://teacher.xuecheng.com/" class="personal" target="_blank">教学提供方</a> <a href="http://system.xuecheng.com/" class="personal" target="_blank">系统后台</a>

用户登录成功设置数据对象logined为true,设置数据对象user为当前用户信息。
数据对象定义如下:

[AppleScript] 纯文本查看 复制代码
user:{    
 userid:'',     
username: '', 
    userpic: '' }, logined:false

2、解析jwt令牌 在util.js中定义解析jwt令牌方法:

[AppleScript] 纯文本查看 复制代码
//解析jwt令牌,获取用户信息 var getUserInfoFromJwt = function (jwt) {   
  if(!jwt){    
     return ;
     }   
  var jwtDecodeVal = jwt_decode(jwt);   
  if (!jwtDecodeVal) {       
  return ;   
  }  
   let activeUser={}   
  //console.log(jwtDecodeVal)  
   activeUser.utype = jwtDecodeVal.utype || '';   
  activeUser.username = jwtDecodeVal.name || '';  
   activeUser.userpic = jwtDecodeVal.userpic || '';    
 activeUser.userid = jwtDecodeVal.userid || '';   
  activeUser.authorities = jwtDecodeVal.authorities || '';  
   activeUser.uid = jwtDecodeVal.jti || '';    
 activeUser.jwt = jwt;   
  return activeUser; }

3、refresh_user() 在mounted钩子方法中获取当前用户信息,并将用户信息存储到sessionStorage

[AppleScript] 纯文本查看 复制代码
mounted(){  
   //刷新当前用户    
 this.refresh_user() }

refresh_user()方法如下:

[AppleScript] 纯文本查看 复制代码
refresh_user:function(){           
               //从sessionStorage中取出当前用户        
         let activeUser= getActiveUser();     
            //取出cookie中的令牌
                let uid = getCookie("uid")

[AppleScript] 纯文本查看 复制代码
//console.log(activeUser)           
      if(activeUser && uid && uid == activeUser.uid){    
                 this.logined = true        
             this.user = activeUser;        
         }else{             
        if(!uid){          
               return ;         
            }              
       //请求查询jwt    
                 getjwt().then((res) => {  
                       if(res.success){         
                    let jwt = res.jwt;         
                    let activeUser = getUserInfoFromJwt(jwt)     
                        if(activeUser){                  
               this.logined = true           
                      this.user = activeUser;        
                         setUserSession("activeUser",JSON.stringify(activeUser))    
                         }                
         }              
       })       
          }   
          }

2.3.4 配置代理转发
上边实现在首页显示当前用户信息,首页需要通过Nginx代理请求认证服务,所以需要在首页的虚拟主机上配置代 理路径:

[AppleScript] 纯文本查看 复制代码
#认证 location ^~ /openapi/auth/ {   
     proxy_pass http://auth_server_pool/auth/;     
       }

注意:其它前端系统要接入认证要请求认证服务也需要配置上边的代理路径。



0 个回复

您需要登录后才可以回帖 登录 | 加入黑马