我是couchdb的新手,我需要进行连接并从2种文档类型中获取结果。
我在一个文档中有type="registeredEvent"
,在另一个文档中有type="user"
。这两种类型的模式如下:
registeredEvent
{
"_id": "316ff4844ce56...",
"_rev": "2-5dcfb85eaea3f....",
"eventid": "0620F01F-3B6B-DE07-860A-SF453FF5AELP11",
"email": "amaya@gmail.com",
"type": "registeredEvent"
}
用户
{
"_id": "Profile_amaya@gmail.com",
"_rev": "1-89768208cfb5650ee....",
"name": "amaya",
"email": "amaya@gmail.com",
"dob": "91-07-14",
"gender": "Female",
"location": "canada",
"facebook": "dghdfj",
"twitter": "fgfghh",
"type": "user"
}
我想获取填充图表的数据。
我使用以下内容获取数据
db.query('event/getGraphdata1...',{keys: [<array of eventid's>], include_docs: true })
任何人都可以帮助我。我尝试了很多但没有成功的事情。我无法检查我是否在正确的轨道上,因为所有事情都为我提供了错误的数据。
答案 0 :(得分:1)
您可以使用以下视图从这两个文档中获取一个结果集:
function(doc) {
if (doc.type === 'registeredEvent') {
emit(doc.eventid, {_id:"Profile_" + doc.email}, doc.user);
}
}
请求使用HTTP API时,请添加include_docs = true
答案 1 :(得分:1)
您可以使用以下列表获取性别,年龄数据:
function(head, req) {
var row; var counts = {}; var male = female = age18 = 0;
while(row = getRow()) {
if(row.doc != null) {
if(row.doc.gender != null && row.doc.gender.toLowerCase() === 'male')
male++;
else
female++;
if(row.doc.dob != null && Array.isArray(row.doc.dob)) {
var age = 0;
var date1 = new Date(row.doc.dob[0], row.doc.dob[1], row.doc.dob[2]);
var date2 = new Date(); var m = date1.getMonth();
var years = date2.getFullYear() - date1.getFullYear();
date1.setFullYear(date1.getFullYear() + years);
if (date1.getMonth() != m) date1.setDate(0);
age = date1 > date2 ? --years : years;
if(age < 29)
age18++;
}
}
}
counts['male'] = male;counts['female'] = female; counts['age18'] = age18; send(JSON.stringify({'counts' : counts}))
}
如果需要,您可以扩展此项以支持更多年龄组...