我有一些代码:
db.files.update(id, {name: name}).then(function(updated) {
// Other stuff
}
当它运行时,它将整个记录替换为
{
name: "File name"
}
根据文档,这是 Table.put() 应该做的,而不是 Table.update()。
我做错了什么,还是 Dexie 有问题?
我有一些代码:
db.files.update(id, {name: name}).then(function(updated) {
// Other stuff
}
当它运行时,它将整个记录替换为
{
name: "File name"
}
根据文档,这是 Table.put() 应该做的,而不是 Table.update()。
我做错了什么,还是 Dexie 有问题?