我想通过 ajax 加载一些数据并自动解析日期。
var url = "http://example.com/report_containing_dates.json"
jQuery.getJSON(url, function(data_containing_dates_and_strings){
console.log(date);
});
我的 json 中的日期格式是“2012-09-28”(rails to_json 的默认格式),但 jQuery 只是将其视为一个字符串。日期需要采用什么格式才能让 jquery 将其解析为日期?
示例响应:
{
"columns": [
["date", "Date"],
["number", "active_users"],
],
"rows": [
["2012-09-28", 120, 98, 60],
["2012-09-29", 127, 107, 63]
]
}