如何使用javacript
转换python时间戳从2014-07-28T20:45:04.271935
至1.6.2014(20:45)
我尝试使用javascript中的内置解析函数,但似乎混淆了一些东西..
out = new Date(context);
out = out.getDay() + ". " + out.getMonth() + ". " + out.getFullYear() + " (" + out.getHours()+ ":" + out.getMinutes() + ")";
答案 0 :(得分:0)
如果您在申请中密集使用日期和时间,我建议您使用Moment.js库进行无痛转换:
moment('2014-07-28T20:45:04.271935').format('D.M.YYYY (H:m)');
// Will return "28.7.2014 (20:45)"
moment('2014-07-09T20:45:04.271935').format('DD.MM.YYYY (H:m)');
// Will return "09.07.2014 (20:45)"
如果您只需要在一个地方格式化日期和时间,那么只需像在代码示例中那样手动构建字符串。