我是离子,打字稿和angularjs的新手。在常规 java 解析长日期很容易
Date date = new Date(1915654554);
SimpleDateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy");
String strDate = dateFormat.format(date);
但是在Ionic- TypeScript 中,我尝试过这样的
let date=new Date(1915654554);
alert(date); //shows invalid date
其实我从web-api
获得"PublishingDate": "/Date(1497426961890)/"
HTML 代码:
<p>
{{ getActualDate(notice.PublishingDate) }}
</p>
TypeScript 代码:
getActualDate(lDate)
{
var d=lDate.substring(6,19);
let date=new Date(d)
return date.getDate() + "/" + (date.getMonth() + 1) + "/" + date. getFullYear();
//shows Nan/Nan/Nan
}
显示无效日期。任何帮助,建议请。谢谢。
答案 0 :(得分:0)
尝试以下方法。您可以使用Javascript Date Methods。
let date=new Date(1915654554);
alert(date.getDate() + "/" + (date.getMonth() + 1) + "/" + date. getFullYear()); // 22/1/1970
更重要的是要记住getMonth
会返回一个介于0到11之间的数字,所以如果你希望它为1-12,你必须加1。