Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
升级到 Angular 11 后,日期管道不再正确显示。如果我尝试
date to display {{1610038272|date:"medium"}} === Jan 07, 2021, 16:51:12
但相反它显示
Jan 19, 1970, 16:13:58
是否有任何破坏性更改会阻止正确转换?还是我需要额外设置一些东西?
您需要以毫秒为单位提供日期
使用 Angular 2 管道将时间戳转换为日期
{{ 1610038272 * 1000 | date: 'medium' }}