我有一个日期字符串"2012-11-14T06:57:36+0000"我想将其转换为以下格式"Nov 14 2012 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));
}
谁能帮我?提前致谢