使用在mongoose.aggregate中具有空格的字段键

时间:2018-09-03 07:51:53

标签: mongodb mongoose

我正在尝试使用mongoose.aggregate,我的数据库字段中有空格,我该如何使用

entry.aggregate([
    {
        $match: {
            ['Request ID']: '10000000051603'
        }
    }
], function(err, result) {
    if(err) {
        console.log(err);
    } else {
        console.log(result);
    }
})

它不起作用。

请帮助。

0 个答案:

没有答案