我正在尝试使用mongoose.aggregate,我的数据库字段中有空格,我该如何使用
entry.aggregate([
{
$match: {
['Request ID']: '10000000051603'
}
}
], function(err, result) {
if(err) {
console.log(err);
} else {
console.log(result);
}
})
它不起作用。
请帮助。