0

CouchDB 中有没有办法制作主/详细信息_view 或_list?

另一方面,_view 似乎只能呈现主视图,而 _list 只能呈现细节列表。因此,答案可以通过确认这是不可能的链接来证明。

4

1 回答 1

2

使用视图排序规则收集详细信息:

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>

于 2013-01-10T19:09:34.503 回答