当我在sails.js 中创建一个控制器并重新定义了一些标准方法时,如何调用该控制器的默认父方法?
module.exports = {
create: function(req, res) {
//test some parameters
if (condition) {
//call regular super method, proceed as usual
//_super(); <- how to do this?
} else {
//do some other things
}
}
};