1
有人可以幫助我添加新功能來獲取功能嗎?我正在使用sails.js和mongoDB。sails.js添加功能獲取功能
extend get: function(req, res)
{
defaultget(req, res).done(function(err, data){
// do some stuff with data
// I need to return everything what it finds, adding new attribute to result
// (I know how to do this),
// but still have an option to use default functionality for parsing
// query strings .
res.json(changedData);
})
}
謝謝你的回答。
Miro