是否有人愿意提供有关如何编写couchdb设计文档的完整文档示例?
我从来没有找到适当的文件。我能够找到可用方法的列表,但不能找到如何在设计文档中编写它们的方法。 例如,couchdb documentation in this page解释了如何使用地图功能,但它没有解释此功能是通过以下方式在设计文档中实现的:
{
"views": {
"someView": {
"map": "function(doc){ emit(doc.name, doc) }"
}
}
}
this page中的信息很少,但对我来说似乎非常不完整。例如,它甚至没有提到可以有" validate_doc_update"在结构中。
我认为一个好的文档示例实际上在couchdb doc本身非常有用 它可能如下所示:
{
"_id": "_design/exampleDesignDocument",
"_rev": "1-11111111111111111111111111",
"views": {
"someView": {
"map": "function(doc){ emit(doc.name, doc) }",
...
}
},
"lists": {
"someList": "function(head, req){ send('<html>hello</html>') }"
}
...
}
此示例将显示所有设计文档方法的用法,包括(但不限于我忘记了一些):查看(地图,缩小功能...),显示,列表,更新,过滤,验证。
答案 0 :(得分:0)
Pouchdb文档提供了良好的文档元素以及IBM cloudant,正如@xpqz所提出的那样。
{
"_id": "_design/exampleDesignDocument",
"_rev": "1-11111111111111111111111111",
"views": {
"someView": {
"map": "function(doc){ emit(doc.name, doc) }",
...
}
},
"shows": {
"someShowFunction": "function (doc, req) { ... }"
},
"lists": {
"someList": "function(head, req){ send('<html>hello</html>') }"
},
"updates": {
"oneUpdateFunc": "function (doc, req) { ... }"
},
"filters": {
"someFilter": "function(doc, req){ if (doc.owner === req.userCtx.name) return true; else return false }"
},
"validate_doc_update": "function(newDoc, oldDoc, userCtx, secObj) { ... }"
}
但我认为这个答案仍然可以改进和完成。