我正在使用Angular Material DatePicker
我从API收到时间戳,必须将时间戳发送回去,但是mat-datepicker使用日期格式,例如ISO 8601字符串。
我目前的解决方法是在从API接收数据时以及在将其发送回之前手动来回转换数据。
// convert date from timestamp to ISO in order to work with datepicker
myDate = myDate ? new Date(myDate) : null;
// convert date back to timestamp
myDate = myDate !== null ? Date.parse(myDate) : null;
我认为此解决方案不是非常优雅或有效。有没有一种方法可以直接将时间戳与角度材质datePicker一起使用?也许使用dateAdapter?