You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Failed to execute 'add' on 'IDBObjectStore': [object Array] could not be cloned. DataCloneError: Failed to execute 'add' on 'IDBObjectStore': [object Array] could not be cloned.
#2108
Failed to execute 'add' on 'IDBObjectStore': [object Array] could not be cloned.
DataCloneError: Failed to execute 'add' on 'IDBObjectStore': [object Array] could not be cloned.
interface dbHbServiceOrderDetailsApprovalLog {
id: number;
userId: bigint;
logAddTime: string;
[key: string]:any
}
const db = new Dexie('adl') as Dexie & {
dbHbServiceOrderDetailsApprovalLog: EntityTable<dbHbServiceOrderDetailsApprovalLog, 'id'>;
};
The text was updated successfully, but these errors were encountered:
Make sure that the objects you add does not contain promises or functions. Set a breakpoint on the line that adds an object and inspect the object. Or if you prefer to console.log item before sending it along to table.add().
How can I customize columns?
Failed to execute 'add' on 'IDBObjectStore': [object Array] could not be cloned.
DataCloneError: Failed to execute 'add' on 'IDBObjectStore': [object Array] could not be cloned.
The text was updated successfully, but these errors were encountered: