内容简介:定义:令牌,一般用于用户身份验证jsonwebtokenVue提供了很多钩子函数给我们在不同的时刻操作不同的代码
Token
定义:令牌,一般用于用户身份验证
Token的特点
- 随机性
- 不可预测性
- 时效性
- 无状态
- 跨域
node所需模块
jsonwebtoken
- 生成并加密Token
// 设置对象 let user = {}; // 加密密钥 let secret = '0000'; let token = jwt.sign(user,secret,{ 'expiresIn':60*60 // 设置过期时间 });
- 解密Token
// 获取前端发送的token let token = req.headers['auth']; jwt.verify(token,'0000',(error,result)=>{ if(error){ res.send({false,{},'unauth'}); }else{ res.send({true,{},result); } })
生命周期
Vue提供了很多钩子函数给我们在不同的时刻操作不同的代码
- beforeCreate:属性和方法初始化之前
- create:属性和方法初始化完成
- beforeMount:宿主元素挂载前
- mounted:宿主元素挂在完成
- beforeUpdate:属性和方法更新之前
- updated:属性和方法更新完成
- beforeDestory:销毁组件之前
- destoryed:组件销毁完成
以上所述就是小编给大家介绍的《Vue笔记(五)——Token&生命周期》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Introduction to the Design and Analysis of Algorithms
Anany Levitin / Addison Wesley / 2011-10-10 / USD 117.00
Based on a new classification of algorithm design techniques and a clear delineation of analysis methods, Introduction to the Design and Analysis of Algorithms presents the subject in a coherent a......一起来看看 《Introduction to the Design and Analysis of Algorithms》 这本书的介绍吧!