假设我们有以下数据结构:
{
"name": "",
"tags": []
}
使用以下示例数据:
{
"name": "Test1",
"tags": [
"Laptop",
"Smartphone",
"Tablet"
]
}
{
"name": "Test2",
"tags": [
"Computer",
"Laptop",
"Smartphone",
"Tablet"
]
}
{
"name": "Test3",
"tags": [
"Smartphone",
"Tablet"
]
}
现在我正在尝试查找:在标签中查找所有带有 Smartphone AND Tablet 的文档。这应该返回所有文件。
我无法弄清楚这如何与 couchdb 一起使用。我尝试将标签添加为键并使用 startkey / endkey 没有运气。
希望有人可以帮助我。
问候,本