是否有办法在Sails控制器中定义的每个和所有操作之前执行操作/功能?与模型中的beforeCreate
挂钩类似。
例如,在我的DataController中,我有以下操作:
module.exports = {
mockdata: function(req, res) {
var criteria = {};
// collect all params
criteria = _.merge({}, req.params.all(), req.body);
//...some more login with the criteria...
},
getDataForHost: function(req, res) {
var criteria = {};
// collect all params
criteria = _.merge({}, req.params.all(), req.body);
//...some more login with the criteria...
}
};
我可以执行以下操作:
module.exports = {
beforeAction: function(req, res, next) {
var criteria = {};
// collect all params
criteria = _.merge({}, req.params.all(), req.body);
// store the criteria somewhere for later use
// or perhaps pass them on to the next call
next();
},
mockdata: function(req, res) {
//...some more login with the criteria...
},
getDataForHost: function(req, res) {
//...some more login with the criteria...
}
};
对定义的任何操作的任何调用将首先通过beforeAction吗?
答案 0 :(得分:3)
您可以在此处使用政策。
例如,将自定义政策创建为api/policies/collectParams.js
:
module.exports = function (req, res, next) {
// your code goes here
};
您可以指定此策略是否适用于所有控制器/操作,或仅适用于config/policies.js
中的特定控制器/操作:
module.exports.policies = {
// Default policy for all controllers and actions
'*': 'collectParams',
// Policy for all actions of a specific controller
'DataController': {
'*': 'collectParams'
},
// Policy for specific actions of a specific controller
'AnotherController': {
someAction: 'collectParams'
}
};
有时您可能需要知道当前控制器是什么(来自您的策略代码)。您可以在api/policies/collectParams.js
文件中轻松获取它:
console.log(req.options.model); // Model name - if you are using blueprints
console.log(req.options.controller); // Controller name
console.log(req.options.action); // Action name
答案 1 :(得分:2)
是的,您可以将策略用作beforeAction。
文档显示它用于身份验证,但它基本上可以用于您的目的。您只需将之前的操作放入策略中即可。