在嵌套数组中搜索的内容是什么:
"_id" : "123",
"Array1" : [
{
"field1" : {
"nestedArray1" : [
{
"content" : "This string inside %nestedArray%",
}
]
},
}
],
我尝试使用以下正则表达式 Array1.field1.nestedArray1.content
Document doc = new Document();
doc.append("Array1.field1.nestedArray1.content", new Document("$regex", ".*" + "%nestedArray%" + ".*"));
但我无法得到正确的结果..上述查询的格式正确