我想傳遞一個JSON,我想從jQuery的作爲訪問,C#項目,如JSON的根節點
jdata.comType
我的C#代碼,
var frontChartList = new List<object>();
frontChartList.Add(new
{
comType = comType,
today = DateTime.Now.ToString("D"),
agentsAdded = "53",
agentsAvail = "47",
packageAvailDays = leftDays.ToString(),
});
JavaScriptSerializer jss = new JavaScriptSerializer();
String json = jss.Serialize(frontChartList);
return json;
我無法訪問此爲
jdata.comType 只, jdata [0] .comType
我應該如何創建JSON得到儘可能jdata.comType訪問的字符串? 因爲我只會在此傳遞一個對象。
,你是故意將其添加到列表中。爲什麼?爲什麼不只是序列化對象? – Rob
你在瀏覽器中得到什麼json? –