5

我的架构如下所示:

var CompanySchema = new Schema({
  //
});

CompanySchema.methods.getProducts = function(next) {
  var Product = require(...);
  Product.find({...}).exec(function(err, products) {
    if (err) 
      return next(err)
    return next(null, products || []);
  });
};

我想知道在序列化 Company 对象时是否有某种方法可以包含 getProducts() 方法的结果,例如:

CompanySchema.methods.toJSON = function() {
  var obj = this.toObject();
  obj.products = this.getProducts();
  return obj;
};

先感谢您。

4

1 回答 1

2

当然,您可以包含它,只是不能同步替换toJSON.

原因是您不能在同步方法中使用异步方法(例如find来自 Mongoose),例如toJSON.

所以你需要让它异步:

CompanySchema.methods.toJSONAsync = function(callback) {
  var obj = this.toObject();
  this.getProducts(function(products) {
    obj.products = products;
  });
  callback(obj);
};
于 2013-09-28T13:51:18.447 回答