サファリのインデックス列を未定義として取得しています
これが私が書いたスニペットです。
parshurams indexeddb と shim jquery プラグインを使用しています。
.indexedDB("database_name", {
"schema" :
"1" : function(transaction){
// Examples of using the transaction object
var obj2 = transaction.createObjectStore("store2",{"keyPath":"index"});
obj2.createIndex("price");
}
}
});
var sampledata={
index:'1',
firstName: 'Aaron',
lastName: 'Powell',
answer: 42,
price:100
};
var randomnumber=Math.floor(Math.random()*1155)
var objectStore = $.indexedDB("database_name").objectStore("store2");
var promise = objectStore.add(sampledata);