猫鼬样本操作员不工作

时间:2017-10-01 07:29:00

标签: node.js database mongodb mongoose

每当我删除带有仅匹配的样本的行时,代码工作正常,但是当我像这样添加它时:

Model.aggregate(
    {$match: {}},
    {$sample: {size: 2}},
    (err, rsp)=>{
   callback(err,rsp);
});

它会抛出一个错误,说第一个参数必须是字符串或缓冲区。它只能由{$ sample:{size:2}}引起。为什么? 样品不在mongoose中工作吗?

1 个答案:

答案 0 :(得分:0)

尝试一下:

model.instance.aggregate([{ $match:  buildQuery(model) }]).sample(20).exec(function (err, results) {
    console.log(model.size, results.length);
});