我的 API 使用以下 JSON 结构响应我的调用:
[
{
"order": {
"total": "240.0",
"completed_at": 1358432545000
}
},
{
"order": {
"total": "720.0",
"completed_at": 1359474090000
}
}
]
但是,我希望这个 JSON 的结构是这样的,以便在 Flot Graphs 中使用我的数据:
{
"label":"Order",
"dataBar":[
[
1358432545000,
240.0
],
[
1325635200000 ,
720.0
]
]
}
我已经尝试过以下代码,但它返回所有以逗号分隔的数据,没有 '[' 和 ']'
var flotData = $.map(API_Response, function(i){ return [i.order.completed_at, parseInt(i.order.total)] });
我该怎么做?