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>