0

我正在尝试为环回模型创建一个扩展的 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'}
        }
    );
};

我试着用谷歌搜索它,但没有帮助。

4

1 回答 1

1

请注意 MainReview.count() 是异步的,它需要一个回调函数。您的代码可以修改为:

module.exports = function(MainReview){


    MainReview.greet = function(msg, cb) {
      var MainReviewModel = this;
      MainReviewModel.count(function(err, result) {
        cb(err, 'Greetings... ' + result );
      }); 
    }

    MainReview.remoteMethod(
        'greet', 
        {
          accepts: {arg: 'msg', type: 'Object'},
          returns: {arg: 'greeting', type: 'string'}
        }
    );
};
于 2014-08-26T15:36:25.600 回答