我将 safari 上的索引列设置为未定义
这是我写的片段。
我正在使用 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);