2017-08-25 1 views

Répondre

0

Utilisez Table.bulkAdd() ou Table.bulkPut(). Par exemple:

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