4

使用 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)
  })
})
4

1 回答 1

9

在完成将数据插入 PouchDB 之前,您的allDocs查询正在运行,由于 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)
    });
  });
});

... 应该管用。

于 2012-04-24T14:31:20.557 回答