简体   繁体   中英

Dexie DB: How to save an array to a database?

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

Use Table.bulkAdd() or Table.bulkPut(). For example:

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);
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM