鑑於我的下列文件:與標籤= FOO或標籤的CouchDB查看文檔=條
{
_id: ###,
type: "blogpost",
title: "First blog post",
tag: "tutorial"
}
{
_id: ###,
type: "blogpost",
title: "Second blog post",
tag: "report"
}
{
_id: ###,
type: "blogpost",
title: "Third blog post",
tag: "tutorial"
}
{
_id: ###,
type: "blogpost",
title: "Fourth blog post",
tag: "article"
}
現在,我想這樣做是:找到所有相關博客文章,其標籤的文章或報告。
我已經閱讀過文檔,可以對視圖或列表執行POST,允許搜索多個鍵。但是這總是需要cURL或其他東西?
那麼這就是我正在尋找的。我的JavaScript知識只是非常棒,足以爲我自己找出答案。感謝您的幫助! – Maarten