标签: mongodb
我想$match只aggregate()中的空对象。可能吗?我知道$exists,但{}的布尔值为true,所以我卡住了。
$match
aggregate()
$exists
{}
true
答案 0 :(得分:3)
您是否尝试过使用{field: {}}?
{field: {}}
例如:
db.users.aggregate([{$match: {val: {}}}])