我正在使用 highchart 插件开发图表。用于为图表提供动态输入。因此,我需要将 JSON 格式更改为 Array。如何使用 javascript 将 JSON 数组对象格式更改为 Array?
[
{
"scoreCount": "108",
"legendDesc": "Excellent ",
"colorPatchCode": "#009900"
},
{
"scoreCount": "20",
"legendDesc": "Fail ",
"colorPatchCode": "#FF0000"
}
]
转换数组格式,如
[
[
"scoreCount": "108",
"legendDesc": "Excellent ",
"colorPatchCode": "#009900"
],
[
"scoreCount": "20",
"legendDesc": "Fail ",
"colorPatchCode": "#FF0000"
]
]
任何人都可以帮忙吗?