如何从以下JSON映射或解析系列,以便它们可以显示为整数?
{
"success": true
"data": {
"title": "Resumen de llantas TSV-400",
"categories": [
"400JZ-CCA",
"400JZ-NVA",
"400JZ-XTA",
"400JZ-REN",
"400JZ-SCR",
"400JZ-GAL"
],
"series": [
"90",
"28",
"17",
"223",
"1170",
"98"
]
}
}
答案 0 :(得分:1)
jsondata.data.series =
jsondata.data.series.map(function(str) { return parseInt(str, 10); });
(JS 1.6 +)
答案 1 :(得分:1)
如果您使用的是jquery:
json.data.series = $.map(json.data.series, function(value, index) {
return parseInt(value);
});