我需要从PouchDB数据库中获取所有文档。谁能告诉我如何从回调函数中获取'doc'?我想将它作为响应对象返回,并将其输出到控制台输出中。
doc['Geometry'].size()
or
_source.Geometry.size()
答案 0 :(得分:2)
我认为您想要的是以下内容:
=vlookup(C1,E:F,2,0)
如果出现错误,则会由var db = new pouchdb("meetups");
db.allDocs({
include_docs: true,
attachments: true
}).then(function (result) {
console.log(result);
res.json({"users": result.rows});
}).catch(function (err) {
console.log(err);
});
回调处理,因此您的catch
回调中只有一个参数(result
)。 then
变量将包含一些有关结果的元数据(例如result
)以及total_rows
属性,该属性将是数据库中所有文档的数组。