使用PouchDB插入数据后,我尝试db.getAll()
检索单个文档的所有文档和db.get()
,但没有返回的对象包含我插入的值。
我做错了什么?
new Pouch('idb://test', function(err, db) {
doc = {
test : 'foo',
value : 'bar'
}
db.post(doc, function(err, data) {
if (err) console.error(err)
else console.log(data)
})
db.allDocs(function(err, data) {
if (err) console.error(err)
else console.log(data)
})
})
答案 0 :(得分:8)
您的 allDocs 查询在您完成将数据插入PouchDB之前正在运行,因为IndexedDB API所有数据库查询都是异步的(它们可能必须是,因为它也是HTTP客户端)
new Pouch('idb://test', function(err, db) {
var doc = {
test : 'foo',
value : 'bar'
};
db.post(doc, function(err, data){
if (err) {
return console.error(err);
}
db.allDocs(function(err, data){
if (err) console.err(err)
else console.log(data)
});
});
});
......应该有用。