下面是我在 Couchbase 中通过提供边界框参数的空间视图查询的响应:
{
"rows":[
{
"geometry":{
"type":"Point",
"coordinates":[
-71.10364,
42.381411
]
},
"value":{
"location":{
"type":"Point",
"coordinates":[
-71.10364,
42.381411
]
},
"name":"test",
"visibility":"public",
},
"id":"test",
"key":[
[
-71.10364,
-71.10364
],
[
42.381411,
42.381411
]
]
}
]
}
这是我的空间视图查询:-
function (doc, meta) {
if (doc.type == "folder" && doc.location && doc.location.type) {
if(doc.location.type=='Point'){
var visibility = doc.enabled === true ? 'public' : 'private';
emit(doc.location, {
name:doc.name,
folder_id:doc.folder_id,
location: doc.location,
visibility:visibility
});
}
}
}
但是 JSON 响应包含不需要的数据,所以我想知道如何从 json 响应中删除几何和关键参数。
查询还返回前 10 条记录,有什么方法可以设置限制和跳过参数,以便查询返回所有数据而不是前 10 条。