帆使路线独占 post
sails make route exclusive post
我已经通过这种方式在路由配置文件中添加了 post 到 sails 的路由:
'post /auth/register': 'AuthController.register'
行得通,我可以 post 到这条路线。但是 get 方法也有效。我想将这条路线作为独占 post 路线。我在那里做错了什么?
您需要关闭 sails 为您创建的自动路线。
您可以通过相应地更新 config/blueprings.js 文件来做到这一点
module.exports.blueprints = {actions: false};
http://sailsjs.org/#!/documentation/concepts/Routes?q=automatic-routes
http://sailsjs.org/#!/documentation/reference/blueprint-api?q=blueprint-routes
http://sailsjs.org/#!/documentation/reference/sails.config/sails.config.blueprints.html
我已经通过这种方式在路由配置文件中添加了 post 到 sails 的路由:
'post /auth/register': 'AuthController.register'
行得通,我可以 post 到这条路线。但是 get 方法也有效。我想将这条路线作为独占 post 路线。我在那里做错了什么?
您需要关闭 sails 为您创建的自动路线。
您可以通过相应地更新 config/blueprings.js 文件来做到这一点
module.exports.blueprints = {actions: false};
http://sailsjs.org/#!/documentation/concepts/Routes?q=automatic-routes http://sailsjs.org/#!/documentation/reference/blueprint-api?q=blueprint-routes http://sailsjs.org/#!/documentation/reference/sails.config/sails.config.blueprints.html