尝试使用put
方法更新 indexeddb 中的记录时,似乎创建了一个新值而不是更改。根据{{3}},这是更新记录的方法,但我没有预期的结果。有任何想法吗?这是我的代码示例。
/*
@keys initalisation
*/
extension.onupgradeneeded = function (event) {
database = event.target.result;
if (!database.objectStoreNames.contains('profile')) {
var _profile = database.createObjectStore('profile', { autoIncrement: true });
_profile.createIndex('default', 'default', { unique: true });
_profile.createIndex('username', 'username', { unique: true });
_profile.transaction.oncomplete = function (_oncompleteEvent) {
app.database.store(database, 'profile', {
default: true,
username: 'my name',
image: 'images/svg/menu.svg'
});
};
}
var app = {
database: {
update: function (_database, _datakeys, _key, _value, _function) {
/*
@pass database object, array / string, string, object, callback
*/
var _updateRequest = _database.transaction(_datakeys, "readwrite").objectStore(_key).put(_value);
_updateRequest.onerror = function (event) {
try {
_function.error(event);
} catch(err) {
console.log('An error was encountered', event.target.error.name);
}
};
_updateRequest.onsuccess = function (event) {
try {
_function.success(event);
} catch (error) {
_function(event);
}
};
}
}
};
/*
@how I call the function
*/
app.database.update(database, 'profile', 'profile', {default: false, username: 'hello world', image: 'http://imagepath.com' }, {
error: function () {
alert('failed');
},
success: function (returnedData) {
console.log(returnedData);
}
);
答案 0 :(得分:4)
您使用的是内联还是外线密钥?
id
之前在对象中设置store.put
(无论您命名为什么)属性。id
属性值作为第二个参数传递给store.put
。修改:如果您不知道密钥是在线还是在线,请查看following:
每个对象库必须具有在其数据库中唯一的名称。对象存储可以可选地具有密钥生成器和密钥路径。如果对象存储库具有密钥路径,则它使用内联密钥;否则,它使用外线密钥。
如果您正在使用内联,并且您正在设置该属性,并且仍在执行插入而不是更新,请在调用console.log('The object passed to put is %o', objToPut);
之前尝试store.put
,并验证id
是否{{1}} 1}}属性(或任何你命名为商店主键的东西)被定义并具有期望值(其id)。
如果您没有使用商店的密钥,那么所有的put都将被插入,因为indexedDB无法知道要更新的对象。如果你想要这样做,也许你可以在你想要改变的对象上使用openCursor,然后使用cursor.update替换那个对象。