标签: javascript pouchdb
如何找到字段x
x
map = function(doc) { // here, how do I emit the document with the highest value of 'doc.x'? } db.query(map, {include_docs: true}).then(function(doc) { console.log(doc.x) })
答案 0 :(得分:0)
这可能不是最好的方法,但这就是我做的方式:
restivus