有没有办法在Google Visualization API中从
JSON中检索日期值?
这是 playground的snipplet请复制下面的代码
这是 playground的snipplet请复制下面的代码
当你运行代码时,你不会有任何结果.您应该从我用注释标记的日期值中删除引号,以便检索结果.
function drawVisualization() { var JSONObject = { cols: [ {id: 'header1',label: 'Header1',type: 'string'},{id: 'header2',label: 'Header2',type: 'date'} ],rows: [ { c: [ {v: 'Value1'},{v: "new Date(2010,3,28)"} // <= This is the format I receive from WebService ] },{ c: [ {v: 'Value2'},{v: new Date(2010,28)} // <=This is the format Google API accepts ] } ] }; var data = new google.visualization.DataTable(JSONObject,0.5); visualization = new google.visualization.Table(document.getElementById('table')); visualization.draw(data,{'allowHtml': true}); }
解决方法
我刚刚遇到这个问题,所以我以为我会粘贴google api文档的答案,位于这里
http://code.google.com/apis/chart/interactive/docs/dev/implementing_data_source.html#jsondatatable
“JSON不支持JavaScript Date值(例如,”new Date(2008,1,28,31,26)“; API实现方式,但是API现在支持自定义的JSON日期表示形式以下格式的字符串:日期(年,月,日[,小时,分钟,秒[,毫秒]])其中一天中的所有可选项,月数为零.