javascript 更新IndexDB

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 更新IndexDB相关的知识,希望对你有一定的参考价值。

dbPromise.then(function(db) {
  var tx = db.transaction('store', 'readwrite');
  var store = tx.objectStore('store');
  var item = {
    name: 'sandwich',
    price: 99.99,
    description: 'A very tasty, but quite expensive, sandwich',
    created: new Date().getTime()
  };
  store.put(item);
  return tx.complete;
}).then(function() {
  console.log('item updated!');
});

以上是关于javascript 更新IndexDB的主要内容,如果未能解决你的问题,请参考以下文章

javascript 范围IndexDB

javascript 游标IndexDB

javascript GetAll IndexDB

javascript 删除IndexDB

javascript 获取IndexDB

javascript 添加IndexDB