Timestamp to human readable date with angular

后端 未结 1 1342
小蘑菇
小蘑菇 2021-01-29 01:16

Is there a built in filter in angular to convert my unix timestamp to a human readable date format?

I have tried the following:

{{ ::time | date:\"medium         


        
相关标签:
1条回答
  • 2021-01-29 01:31

    You need to convert seconds to milliseconds... Try it with 1232346882000.

    {{ 1232346882000 | date:"medium" }}
    

    Fiddle

    0 讨论(0)
提交回复
热议问题