公告
财富商城
积分规则
提问
发文
2019-04-03 07:19发布
贼婆χ
I have current time in milliseconds as - 1454521239279
How do I convert it to 03 FEB 2016 and time as 11:10 PM ?
Moment parser
moment(1454521239279).format("DD MMM YYYY hh:mm a") //parse integer moment("1454521239279", "x").format("DD MMM YYYY hh:mm a") //parse string
Moment unix method
moment.unix(1454521239279/1000).format("DD MMM YYYY hh:mm a")
最多设置5个标签!
Moment parser
Moment unix method