我创建了一组 JSON 数据,这些数据在升级事件期间传递到 IndexedDB。它创建了一个看起来没有问题的非常好的 IndexedDB 数据库。问题是当您将数据库从版本 1 升级到 2 时,它会覆盖所有现有数据,因为它只是遍历 JSON 并应用它。
升级中必须有某种方法来防止没有唯一键的新数据库项写入任何内容。我该怎么做?如下只是覆盖当前数据。
objectStore = event.currentTarget.transaction.objectStore('player');
objectStore.put({ key: 'non unique, but I replace my twin\'s data anyway', data: value });
在此先感谢您的帮助,搜索了所有内容,但找不到解决此问题的方法。
编辑2012 年 8 月 24 日
根据 Kristof 使用 get 检查信息的建议,我做了一些挖掘和研究。找到答案后,我决定编写一些伪代码来帮助您。
// Create the get request inside your upgrade
var tableData = event.currentTarget.transaction.objectStore('your table name');
var getData = tableStore.get('your key');
// Run the get request
getData.onsuccess = function (e) {
var result = e.target.result;
// Immediately exit if the current result is not undefined
if (result !== undefined) {
return;
}
// Note, you may or may not need a closure to write data in the callback
// See here for more info on closures in events http://stackoverflow.com/questions/3495679/passing-parameters-in-javascript-onclick-event#answer-3495722
tableStore.add('data to add');
};