我的文档结构如下
"options" : {
"fruit" : {
"is" : false,
}
"vegetable" :{
"is":true,
}
}
我想拿起所有蔬菜篮子里的物品
我试过了
{"options.vegetable.is":"true"} //not working
{"options":"vegetable"} // not working
我正在使用 MongoVUE 并尝试使用 $eleMatch 但仍然收到语法错误..