Is it possible to access a session variable directly in a Model in SailsJS

此生再无相见时 提交于 2019-12-02 10:17:11
Meeker

It is a duplicate of sails.js Use session param in model, so the answer is no. However you have a few options. You can set this value in policies, or you can rewrite blueprint actions to do this. I also require the session user to attach to all models and do it this way.

For instance this in a policy will set a userId on any blueprint create action

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