我在java中使用couchbase API
View view = client.getView("dev_1", "view1");
Query query = new Query();
query.setIncludeDocs(true);
query.setKey(this.Key);
ViewResponse res=client.query(view, query);
for(ViewRow row: res)
{
// Print out some infos about the document
a=a+" "+row.getKey()+" : "+row.getValue()+"<br/>";
}
return a;
和 couchbase 中的 java 脚本视图
function (doc,meta) {
emit(meta.id,doc);
}
因此,当我删除语句 query.setkey(this.Key) 时,它会返回所有表,我在这里缺少什么.. 如何更改函数以仅反映键中提到的表名