将UTC日期转换为日期时间字符串Titanium

时间:2012-11-14 13:47:31

标签: javascript titanium titanium-mobile datetime-format

我有一个日期字符串“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));   
}

任何人都可以帮助我吗?提前致谢

2 个答案:

答案 0 :(得分:6)

所有浏览器都不支持相同的日期格式。我们可以选择的最佳方法是将字符串拆分为分隔符 - 和:,并将每个结果数组项传递给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  
}

答案 1 :(得分:0)

您可以通过初始化新日期来获取Date对象:

var date = "2012-11-14T06:57:36+0000";
var newDate = new Date(date); // this will parse the format

console.log(newDate);
> Wed Nov 14 2012 01:57:36 GMT-0500 (EST)

至于格式化,已经有几个线程(如this one)。

还有一些用于日期格式化和处理的库,人们通常在进行大量日期处理时最终使用这些库。如果你正在寻找类似的东西,我会建议Datejs