我一直在尝试使用db.put()
更新单个字段,但无法使其正常工作。每次按给定ID更新单个字段时,它都会删除所有其他条目。这是一个示例代码:
var schema = {
stores: [
{
name: 'items',
keyPath: 'id'
},
{
name: 'config',
keyPath: 'id'
}
]
};
var db = new ydn.db.Storage('initial', schema);
var items = [{
id: 1,
itemId: 'GTA5',
date:'03/25/2013',
description:'Great game'
}, {
id: 2,
itemId: 'Simcity',
date:'12/01/2012',
description:'Awesome gameplay'
}];
var config = {
id: 1,
currency: 'USD'
};
db.put('items', items);
db.put('config', config);
var updateTable = function(){
var req = $.when(db.count('items'),db.values('items'),db.get('config', 1));
var disp = function(s) {
var e = document.createElement('div');
e.textContent = s;
document.body.appendChild(e);
};
req.done(function(count,r,config) {
var currency = config.currency;
if(count > 0){
var n = r.length;
for (var i = 0; i < n; i++) {
var id = r[i].id;
var itemId = r[i].itemId;
var date = r[i].date;
var description = r[i].description
disp('ID: '+id+' itemID: '+itemId+' Currency: '+currency+' Date: '+date+' Description: '+description);
}
}
});
}
updateTable();
$('a').click(function(e){
e.preventDefault();
db.put('items',{id:2,description:'Borring'}).done(function(){
updateTable();
});
});
以下是JSFiddle发生的最新动态示例。如果单击“更改”链接,则会更新指定的字段,但所有其他字段都是“未定义”
答案 0 :(得分:1)
是的,SimCity现在很无聊,但明天会再次带来兴奋。
IndexedDB本质上是key-document store。您必须整体读取或写入记录。不能仅更新某些字段。事件如果你想要小更新,你必须读取和写回整个记录。
读取并回写整个记录是可以的,但是对于一致性有一个重要的考虑因素。回写时,必须确保您所拥有的记录未被其他线程修改。即使javascript是单线程,因为读取和写入操作都是异步的,并且每个操作可能具有不同的数据库状态。这似乎非常罕见,但经常发生。例如,当用户单击时,没有任何反应,然后再次单击。这些用户交互排队并从异步数据库角度并行执行。
一种常见的技术是对两个操作使用单个事务。在YDN-DB中,您可以通过三种方式完成。
使用显式交易:
db.run(function(tx_db) {
tx_db.get('items', 2).done(function(item) {
item.description = 'boring until Tomorrow';
tx_db.put(item).done(function(k) {
updateTable();
}
}
}, ['items'], 'readwrite');
使用原子数据库操作:
var iter = ydn.db.ValueIterator.where('items', '=', 2);
db.open(function(cursor) {
var item = cursor.getValue();
item.description = 'boring until Tomorrow';
cursor.update(item);
}, iter, 'readwrite');
编辑:
使用查询包装器:
db.from('items', '=', 2).patch({description: 'boring until Tomorrow'});