我正在尝试为环回模型创建一个扩展的 api
使用下面提到的文档,http://docs.strongloop.com/display/LB/Extend+your+API
但我无法使用环回提供的自定义函数,如MainReview.count()
module.exports = function(MainReview){
MainReview.greet = function(msg, cb) {
var MainReview = this;
cb(null, 'Greetings... ' + **MainReview.count()** );
}
MainReview.remoteMethod(
'greet',
{
accepts: {arg: 'msg', type: 'Object'},
returns: {arg: 'greeting', type: 'string'}
}
);
};
我试着用谷歌搜索它,但没有帮助。