我正在尝试比较各种 Date 元素,例如表示日期格式的 2 个日期元素,但无法比较两者,因为显示“ core.js:6237 ERROR TypeError: newticketList.createdAt.toDateString is not a function ”。这也与 getDate 或 getMonth 等任何其他功能 ps.:我已经搜索过它不能被识别为日期格式,但在这种情况下我该如何解决呢?
ticketList: Array<Ticket>;
let dateTime = new Date()
(...)
this.ticketList = this.ticketList.filter(
newticketList => (newticketList.createdAt.toDateString() != dateTime.toDateString()))