Angular,Dexie,日期无效
Angular, Dexie, invalid date
我有一个正在扩展的 Angular V13.0.2 应用程序。我最近刚刚添加了 Dexie (indexedDB)。现在,当我尝试向我的数据库添加日期时,我只会从中得到一条“无效日期”语句。
// Export clients
export interface Clients {
id?: number;
addressId: number;
firstName: string;
lastName: string;
created: Date;
}
// Create a client
const clientId = await db.clients.add({
addressId: addressId,
firstName: 'John',
lastName: 'Doe',
created: new Date('1995-12-17T03:24:00')
});
The visualization is nothing more then a ngFor over the clients. Am I missing something?
不是很清楚。但是 Dexie.js 使用 UNIX 纪元时间格式。对于有相同问题的任何人,请使用:
new Date('1995-12-17T03:24:00')
我希望某个地方的人会觉得这有用。
我有一个正在扩展的 Angular V13.0.2 应用程序。我最近刚刚添加了 Dexie (indexedDB)。现在,当我尝试向我的数据库添加日期时,我只会从中得到一条“无效日期”语句。
// Export clients
export interface Clients {
id?: number;
addressId: number;
firstName: string;
lastName: string;
created: Date;
}
// Create a client
const clientId = await db.clients.add({
addressId: addressId,
firstName: 'John',
lastName: 'Doe',
created: new Date('1995-12-17T03:24:00')
});
The visualization is nothing more then a ngFor over the clients. Am I missing something?
不是很清楚。但是 Dexie.js 使用 UNIX 纪元时间格式。对于有相同问题的任何人,请使用:
new Date('1995-12-17T03:24:00')
我希望某个地方的人会觉得这有用。