javascript - Convert timestamp to date using Angular 2 pipes -
i'm trying convert timestamp date format using angular 2 pipes, code follows:
{{load.loaddate | date}} where loaddate attribute of load class, of type number.
i weird results, example timestamp 1468251287 (which matches 11/7/2016) displayed "jan 18, 1970".
i know how can fix issue.
as mentioned @perry need provide date in milliseconds. angular 2 reference date have:
expression date object or number (milliseconds since utc epoch) or iso string
so can be:
{{load.loaddate * 1000 | date}}
Comments
Post a Comment