Node.js - 猫鼬。无法对ObjectId进行查询

时间:2014-03-13 18:01:37

标签: node.js mongoose

这是我第一次在这里提问。 我使用的是node.js和mongoose,我有以下三种模式:

var CustomerCouponSchema = new Schema({
    coupon: { type: Schema.ObjectId, ref: 'Coupon' }
});

var CouponSchema = new Schema({
   isActive: { type: Boolean, default: false },
   supermarket: { type: Schema.ObjectId, ref: 'Supermarket' }
}); 

var SupermarketSchema = new Schema({
   name: { type: string }
});

当我尝试执行以下查询时:

//I have a variable named supermarketId which is an ObjectId
CustomerCoupon.find({ isUsed: false })
   .populate({
       path: 'coupon',
       match: {
          supermarket: { $or: [{ $eq: null }, { $eq: supermarketId }] },
          isActive: true,
        }
     }).exec(function(err, data) {
     });

我收到以下错误:无法使用$或使用ObjectId。

欢迎任何帮助

0 个答案:

没有答案