admin管理员组文章数量:1346036
Sample JSON:
[{"DispatchDt":"2014-05-28T01:34:00","RcvdDt":"1988-12-26T00:00:00"}]
I have this set of dates and I want to convert it to the date format (mm/dd/yyyy). How do you do this is JavaScript?
Sample JSON:
[{"DispatchDt":"2014-05-28T01:34:00","RcvdDt":"1988-12-26T00:00:00"}]
I have this set of dates and I want to convert it to the date format (mm/dd/yyyy). How do you do this is JavaScript?
Share Improve this question edited Jun 18, 2014 at 2:47 Lee Taylor 7,98416 gold badges37 silver badges53 bronze badges asked Jun 18, 2014 at 2:43 LYKSLYKS 694 silver badges13 bronze badges 7- 1 possible duplicate of How to format a JSON date? – xd6_ Commented Jun 18, 2014 at 2:44
- Could you be more specific? 1) do you want the first or the second date out? So are you looking for 05/28/3014 or 12/26/1988. 2) Do you want the result in an object? In a variable? Please give expected output and we can help. – ilonabudapesti Commented Jun 18, 2014 at 2:48
-
@Monthy: the question is already specific. OP has a date that is stored in a string in a given format and they need to reformat it into
mm/dd/yyyy
– zerkms Commented Jun 18, 2014 at 2:49 - @Monthy i think what she exactly wanna try to do is to change the format value of those datetime to date only. – Jhonathan H. Commented Jun 18, 2014 at 2:49
- @Kaii that's easy but what makes you say that? Also the above is not fully JSON, but that's another point. – ilonabudapesti Commented Jun 18, 2014 at 2:53
3 Answers
Reset to default 7Unfortunately parsing and formatting dates is a weak side of javascript.
So usually for that we use the 3rd party libraries like moment.js
An example of how you would do that with moment.js
:
var date = '2014-05-28T01:34:00';
var parsedDate = moment(date);
var formattedDate = parsedDate.format('MM/DD/YYYY');
Demo: http://jsfiddle/8gzFW/
You may format the json string into new Date()
then use js methods to get month,day,year or what exactly you need.
//format string to datetime
var DispatchDt = new Date(this.DispatchDt);
// then use this methods to fetch date,month, year needed
//getDate() // Returns the date
//getMonth() // Returns the month
//getFullYear() // Returns the year
var DispatchDt_date = DispatchDt.getDate();
var DispatchDt_month = DispatchDt.getMonth() + 1; //Months are zero based
var DispatchDt_year = DispatchDt.getFullYear();
Sample on jsFiddle
This would work
var a = "[{"DispatchDt":"2014-05-28T01:34:00","RcvdDt":"1988-12-26T00:00:00"}]";
var b = JSON.parse(c);
for (i in b[0]) {
b[0][i] = b[0][i].slice(0, 9)
}
console.log(b); // b now looks like this [ { DispatchDt: "2014-05-28", RcvDt: "1988-12-26" } ]
Please note the dates are stringified.
本文标签: javascriptHow to format this JSON data to date(mmddyyyy)Stack Overflow
版权声明:本文标题:javascript - How to format this JSON data to date(mmddyyyy) - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743824630a2545412.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论