开发者

Is there a simple conversion for this datetime format?

开发者 https://www.devze.com 2022-12-21 06:14 出处:网络
I\'m retrieving data from a JSON feed using jQuery and as part of the feed I\'m getting \'datetime\' attribu开发者_如何学Pythontes like \"2009-07-01 07:30:09\".I want to put this information into a ja

I'm retrieving data from a JSON feed using jQuery and as part of the feed I'm getting 'datetime' attribu开发者_如何学Pythontes like "2009-07-01 07:30:09". I want to put this information into a javascript Date object for easy use but I don't believe the Date object would recognize this kind of format if I simply plugged it into the constructor. Is there a function or maybe a clever trick I can use to quickly break down this format into something the Date object can recognize and use?


The "date" attribute you are retrieving from that webservice is not a real Date, as it is not a recognized date format.

The easiest way to handle it as a Date object would be to replace the empty space with a "T":

var receivedDate = "2009-07-01 07:30:09";
var serializedDate = new Date(receivedDate.replace(" ", "T"));
alert(serializedDate);

This is not the most correct, as it is not handling timezones, but in most cases will work.


See this and this.

input = "2009-07-01 07:30:09";
var res =  input.match(/([\d\-]+) (\d+):(\d+):(\d+)/);
date = new Date(Date.parse(res[1])); 
date.setHours(res[2]);
date.setMinutes(res[3]);
date.setSeconds(res[4]);
console.log(date);

Edit: My original answer was

t = new Date(Date.parse("2009-07-01 07:30:09"));

which did not throw any error in chrome but all the same incorrectly parsed the date. This threw me off. Date.parse indeed appears to be quite flaky and parsing the complete date and time with it is probably not very reliable.

Edit2: DateJS appears to be a good solution for when some serious parsing of text to date is needed but at 25 kb it is a bit heavy for casual use.


var str="2009-07-01 07:30:09";

It depends on the time zone, and if the date string has subtracted 1 for the month.

If it is GMT time, and the 07 means July and not August:

var str="2009-07-01 07:30:09";

var d=new Date(), time;
str=str.split(/\D0?/);
str[1]-=1;
time=str.splice(3);
d.setUTCFullYear.apply(d,str);
d.setUTCHours.apply(d,time)
alert(d)

/* returned value: (Date) Wed Jul 01 2009 03:30:09 GMT-0400 (Eastern Daylight Time) or local equivilent */


This may be a bit cumbersome, but the JavaScript Date object will take an argument list of YYYY,MM,DD,HH,MM,SS. Parse out the date value and pass it to a Date constructor, e.g.

var splitDT= '2009-07-01 07:30:09'.split(' '); // ['2009-07-01','07:30:09']
var d= splitDT[0].split('-');
var t= splitDT[1].split(':');
alert( (new Date(d[0],d[1],d[2],t[0],t[1],t[2])) );       

Bah. Had to use the array index values instead. Yeah, that's a mess. But it works.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号