我在CouchDB 1.6.1中有类似的文档:
"_id": "test_test",
"_rev": "4-8eb22214f7f3dccd3c979f95ded0a7b0",
"test": {
"sample": {
"abc": {
"aaa": 877,
"bbb": 202,
"ccc": 0,
"ddd": 362,
"eee": 242,
"ggg": 81
},
"def": {
"aaa": 697,
"bbb": 233,
"ccc": 0,
"ddd": 178,
"eee": 90,
"ggg": 5
},
"ghi": {
"aaa": 987,
"bbb": 396,
"ccc": 0,
"ddd": 399,
"eee": 178,
"ggg": 108
},
"jkl": {
"aaa": 1165,
"bbb": 332,
"ccc": 0,
"ddd": 286,
"eee": 173,
"ggg": 100
},
我希望从中提取数据,例如:
1)
"test": {
"sample": {
"abc": {
"aaa": 877,
"def": {
"aaa": 697,
"ghi": {
"aaa": 987, etc.
或:
2)
"test": {
"sample": {
"def": {
"aaa": 697,
"bbb": 233,
"ccc": 0,
"ddd": 178,
"eee": 90,
"ggg": 5
},
我希望能够获得'test'
所有文档或所有文档'sample'
或所有文档'def'
或所有文档'aaa'
的所有文档的总计。
我有一个地图javascript如下:
function(doc) {
if(doc.test.sample.abc.aaa){
emit(null, doc.test.sample.abc.aaa);
}
}
这正确地给出了单个值(877)
我也试过
function(doc) {
for (var i in doc.test.sample.abc){
emit(doc.test.sample.abc[i], null);
}
}
希望得到:
"aaa": 877,
"bbb": 202,
"ccc": 0,
"ddd": 362,
"eee": 242,
"ggg": 81
有时一个人使用map / reduce成功,有时无效。
在田野中循环似乎很困难。
任何帮助将不胜感激。
修改:
的“更改通知,过滤器”部分中的示例代码{
"_id": "_design/app",
"_rev": "1-b20db05077a51944afd11dcb3a6f18f1",
"filters": {
"important": "function(doc, req) { if(doc.priority == 'high') { return true; }
else { return false; }}"
}
}
如果我将此代码粘贴到CouchDB中,则会被拒绝。 它也无法通过JSONLint测试。 我尝试用相同的结果缩小它。 我在这里看不到什么? 下面“答案2”中引用的代码通过JSONLint测试,CouchDB接受它。 但是,一旦开始进入特定功能,就会出现问题。 有没有办法解决这个问题。 非常感谢。
EDIT2 :
我快到了?
Couch接受此代码:
{
"_id": "_design/lists",
"_rev": "3-628dc2f53051971994043c2e0bfc44ea",
"language": "javascript",
"views": {
"list_setup": {
"map": "function(doc) {if(doc.compartment.number){ emit(null, doc.compartment.number);}}"
}
},
"lists": {
"first_list": "function(head, req) {var result = []; while (row = getRow()) { if (row !== null) { row.key + row.value else{ send(JSON.stringify({status_code: 404}));}}send(JSON.stringify(result));}}"
}
}
但是,如果我运行curl,我会
{"error":"compilation_error","reason":"Expression does not eval to a function. (function(head, req) {var result = []; while (row = getRow()) { if (row !== null) { row.key + row.value else{ send(JSON.stringify({status_code: 404}));}}send(JSON.stringify(result));}})"}
我不知道如何处理函数的row.key + row.value
部分。
对不起,这花了很长时间。
答案 0 :(得分:0)
要完成第一个选项,您可以结合使用地图和列表功能。
使用地图功能,您可以为所有文档创建索引
function(doc){
emit(null, doc._id);
}
如果您想要更具体地查询视图,则必须发出此特定值。
下一部分是列表功能。如果您使用" include_docs = true"查询您的视图你得到了整个文件。在此基础上,您可以使用列表功能来格式化" pre"结果。 map函数的每个结果都位于一个包含对象的数组中(每个对象都是 相当于一份文件)。
这是我的列表功能模式:
function(head, req) {
var result = [];
while (row = getRow()) {
if (row !== null) {
// make your formatting here
else{
send(JSON.stringify({
status_code: 404
}));
}
}
send(JSON.stringify(result));
}
最终查询如下所示
curl -X GET -g' http://[host]:[port]/[db]/_design/[ddoc name] / _ list / [list func name] / [map func name]?[query]& include_docs = true'
作为参考,这里是官方文档:http://docs.couchdb.org/en/1.6.1/api/ddoc/render.html#db-design-design-doc-list-list-name-view-name
答案 1 :(得分:0)
以下是可能在设计文档中的所有功能的完整参考。我希望我不会错过任何括号;)
{
"_id": "_design/[ddoc name]",
"views": {
"[view name]": {
"map": "[map function]"
}
},
"language": "javascript",
"lists": {
"[list name]": "[list function]"
},
"shows": {
"[show name]": "[show function]"
},
"updates": {
"[update name]": "[update function]"
},
"filters": {
"[filter name]": "[filter function]"
}
}
缩小JavaScript代码也非常重要。
答案 2 :(得分:0)
function(head, req) {
var result = [];
while (row = getRow()) {
if (row !== null) {
// This is not correct, you have to assigne the result to a
// variable.
// You also have to assigne something to the array result.
// result.append();
// So if row.key and row.value are both numbers and you want
// the result you have to write
// temp = row.key + row.value;
// result.append(temp);
//row.key + row.value
}else {
send(JSON.stringify({
status_code: 404
}));
}
}
send(JSON.stringify(result));
}
}