1

数据库有toArray方法,如何将数组保存到数据库(toDB)?

4

1 回答 1

1

使用 Table.bulkAdd() 或 Table.bulkPut()。例如:

var db = new Dexie("testdb");
db.version(1).stores({friends: 'id,name,age'});
db.friends.bulkPut([
    {id: 1, name: "Foo", age: 33},
    {id: 2, name: "Bar", age: 34}
]).then(result => {
    alert ("Successfully stored the array");
}).catch(error => {
    alert ("Error: " + error);
});
于 2017-08-25T10:11:58.390 回答