2
我在將一個字典對象從控制器傳遞給視圖中的javascript時遇到了一些麻煩。 我正在使用ASP .Net MVC3,我試圖用數據庫中的數據做一些圖表/圖形,我發現HighCharts的JavaScript,我試圖與它合作。 這裏的例子:將字典對象從控制器傳遞給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]
}]
});
});
});
我想用字典來填補一系列變量,這裏是一個使用方法IM:
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);
}
但其返回類似:
{「啪」: 「1,2,3,4,5」,「papa」:[1,2,3,4,5],「papapa」:[1,2,3,4,5]}
所以它沒有與JavaScript中的名稱和數據前相同的語法
BTW,即時通訊使用該填充數據
$.getJSON('@Url.Action("GetSeries)', function(series) {
...
series: series
...
});
最好的問候, 埃爾德
泰..我學到新的東西:d –
順便說一句什麼其他的方式來使用MVC 3剃鬚刀的觀點把它你會用他們自己的邏輯在你的行動來填充?我需要填寫其他變量,如類別等。 –
我不知道我理解。你想打電話給什麼是「它」? – HackedByChinese