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