我在将字典对象从控制器传递到视图中的 javascript 时遇到了一些麻烦。我正在使用 ASP .Net MVC3,我正在尝试使用数据库中的数据制作一些图表/图形,我找到了 HighCharts javascript,我正在尝试使用它。这是示例:
$(function () {
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column'
},
title: {
text: 'Stacked column chart'
},
xAxis: {
categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']
},
yAxis: {
min: 0,
title: {
text: 'Total fruit consumption'
}
},
tooltip: {
formatter: function() {
return ''+
this.series.name +': '+ this.y +' ('+ Math.round(this.percentage) +'%)';
}
},
plotOptions: {
column: {
stacking: 'percent'
}
},
series: [{
name: 'John',
data: [5, 3, 4, 7, 2]
}, {
name: 'Jane',
data: [2, 2, 3, 2, 1]
}, {
name: 'Joe',
data: [3, 4, 4, 2, 5]
}]
});
});
});
我想用字典填充系列变量,这是我使用的方法:
public ActionResult GetSeries()
{
var series= new Dictionary<string, int[]> {
{ "pa", new int[]{1,2,3,4,5} },
{ "papa", new int[]{1,2,3,4,5} },
{ "papapa", new int[]{1,2,3,4,5} },
};
return Json(series, JsonRequestBehavior.AllowGet);
}
但它返回类似:
{"pa":[1,2,3,4,5],"papa":[1,2,3,4,5],"papapa":[1,2,3, 4,5]}
所以它与javascript中的语法不同,每个字段之前都有名称和数据
顺便说一句,我用它来填充数据
$.getJSON('@Url.Action("GetSeries)', function(series) {
...
series: series
...
});
最好的问候, Hélder