无法执行' createObjectStore'在' IDBDatabase'

时间:2014-06-24 08:44:43

标签: javascript indexeddb

为什么我有错误?

我的代码:

var idb = window.indexedDB ||      // Use the standard DB API
          window.mozIndexedDB ||   // Or Firefox's early version of it
          window.webkitIndexedDB;  // Or Chrome's early version

var IDBTransaction = window.IDBTransaction || window.webkitIDBTransaction;
var IDBKeyRange = window.IDBKeyRange || window.webkitIDBKeyRange;

var dbName='nameDb';

var idbRequest=idb.open(dbName,'4.67' /*,dbDescription  */);

idbRequest.onsuccess=function (e) {
    debugger

    var db=e.target.result; 

    if (!db.objectStoreNames.contains('chat')){
        co=db.createObjectStore('chat',{'id':100});
    };

    if (!db.objectStoreNames.contains('iam')){
        co1=db.createObjectStore('iam');
    }; 
};

idbRequest.onerror = function (e) {
    debugger
};
  

未捕获的InvalidStateError:无法在“IDBDatabase”上执行“createObjectStore”:数据库未运行版本更改事务。 index.html的:37   idbRequest.onsuccess

1 个答案:

答案 0 :(得分:24)

您无法在成功命令中创建objectStore。您只能在升级所需的事件中执行此操作。

来自docs的引用:

  

创建新数据库或增加现有数据库的版本号时(通过指定比以前更高的版本号,打开数据库时),将触发onupgradeneeded事件。在此事件的处理程序中,您应该创建此版本数据库所需的对象存储

请参阅documentation