javascript – 将UTC日期转换为日期时间字符串Titanium
作者:互联网
我有一个日期字符串“2012-11-14T06:57:36 0000”,我想转换为以下格式“2012年11月14日12:27”.我尝试了很多解决方案,包括Convert UTC Date to datetime string Javascript.但没有什么可以帮助我.以下代码在android中为我工作.但对于ios,它显示为无效日期
var date = "2012-11-14T06:57:36+0000";
//Calling the function
date = FormatDate(date);
//Function to format the date
function FormatDate(date)
{
var newDate = new Date(date);
newDate = newDate.toString("MMMM");
return (newDate.substring(4,21));
}
谁能帮我?提前致谢
解决方法:
所有浏览器都不支持相同的日期格式.我们可以选择的最佳方法是将字符串拆分为分隔符 – 和:,并将每个结果数组项传递给Date构造函数,请参阅以下函数
function FormatDate(date)
{
var arr = date.split(/[- :T]/), // from your example var date = "2012-11-14T06:57:36+0000";
date = new Date(arr[0], arr[1]-1, arr[2], arr[3], arr[4], 00);
newDate = date.toString("MMMM");
//.. do further stuff here
}
标签:titanium-mobile,javascript,titanium,datetime-format 来源: https://codeday.me/bug/20190826/1725523.html