码迷,mamicode.com
首页 > 其他好文 > 详细

中间件之间传递信息以及将信息发送给模板

时间:2017-09-30 00:27:38      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:action   keyword   toc   key   nbsp   end   index   await   空间   

 

在中间件之间传递信息以及将信息发送给模板时,推荐的命名空间。避免直接在 ctx 上加属性,这样可能会覆盖掉已有的属性,导致出现奇怪的问题。

ctx.state.user = await User.find(id);

这样后续在 controller 里可以通过 this.ctx.state.user 来获取对应的值。

module.exports = class extends think.Controller {
  indexAction() {
    const user = this.ctx.state.user;
  }
}

中间件之间传递信息以及将信息发送给模板

标签:action   keyword   toc   key   nbsp   end   index   await   空间   

原文地址:http://www.cnblogs.com/superAnny/p/7613041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!