Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CouchDBにマスター/詳細_viewまたは_listを作成する方法はありますか?
一方、_viewはマスターのみをレンダリングでき、_listは詳細のリストのみをレンダリングできるように見えます。したがって、答えは、それが不可能であることを確認するリンクによって証明される可能性があります。
ビュー照合を使用して詳細を収集します。
function(doc) { if (doc.type == "post") { emit([doc._id, 0], doc); } else if (doc.type == "comment") { emit([doc.post_id, 1], doc); } }
とクエリ?key=<post_id>
?key=<post_id>