为了账号安全,请及时绑定邮箱和手机立即绑定

前后端分离项目,前端javascript怎么解析出jwt-token中的username?

前后端分离项目,前端javascript怎么解析出jwt-token中的username?

慕斯709654 2019-01-30 10:17:03
下面是后端用于生成jwt-token的函数(golang写的),会返回jwt-token给前端,里面包含username:// Sign signs the context with the specified secret.func Sign(ctx *gin.Context, c Context, secret string) (tokenString string, err error) {    // Load the jwt secret from the Gin config if the secret isn't specified.     if secret == "" {         secret = viper.GetString("jwt_secret")     }    // The token content.     token := jwt.NewWithClaims(jwt.SigningMethodHS256, jwt.MapClaims{        "id":       c.ID,        "username": c.Username,        "nbf":      time.Now().Unix(),        "iat":      time.Now().Unix(),     })    // Sign the token with the specified secret.     tokenString, err = token.SignedString([]byte(secret))    return}问题:前端javascript接收到jwt-token,怎么解析出jwt-token中的username?
查看完整描述

1 回答

?
慕村225694

TA贡献1880条经验 获得超4个赞

jwt生成的字符串由JWT头、有效载荷和签名几个部分组成,然后编码处理后得到的,,你要解析,首先得解码啊。
关键这个字符串一般用于后端的权限验证,后端可能还会加墨处理,前端需要数据,再封装一个接口即可。
需要username,直接让多个后端返回就可以了啊

查看完整回答
反对 回复 2019-01-30
  • 1 回答
  • 0 关注
  • 4725 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信