标签:
前台显示的东西,有相应的文档很容易修改,后台传递数据方式才是我们最关心的
首先要记住,我们一步数据使用的是post,那么后台代码我们要给方法加上 [HttpPost]注解
不然异步没有效果
下面上代码,为了节省时间,字段变量的命名,我用的是英文1,2,3,不要见怪哦
public ActionResult GetMarriageList(int areaId, int level) { List<VwAllPersonInfoModel> allPerList = new List<VwAllPersonInfoModel>(); IVwAllPersonInfoService allPerService = LoadService<IVwAllPersonInfoService>(); Dictionary<string, Object> json = new Dictionary<string, Object>(); DdlDataSrc ddl = new DdlDataSrc(); DataTable dt = new DataTable(); Criteria c = new Criteria(); StringBuilder sb = new StringBuilder(); ddl.getAllChildAreaIds(sb, areaId); #region 根据区域把获取的数据放入json int one = 0; int two = 0; int three = 0; int four = 0; if (level == 3) { c.AddWhere("AreaId", areaId); allPerList = allPerService.GetAllVwAllPersonInfoModel(c); } else if (level != 0) { string str = sb.Remove(sb.Length - 1, 1).ToString(); dt = allPerService.GetAllPersonInfoCharts(str, 0, 0); allPerList = (List<VwAllPersonInfoModel>)ModelConvertHelper<VwAllPersonInfoModel>.ConvertToModel(dt); } if (allPerList.Count != 0) { for (int i = 0; i < allPerList.Count; i++) { switch (allPerList[i].MaticalStatus)//婚姻状况 { case 1: ++one; break; case 2: ++two; break; case 3: ++three; break; case 4: ++four; break; } } json.Add("未婚", one); json.Add("已婚有配偶", two); json.Add("离婚", three); json.Add("丧偶", four); } else { json.Add("暂无数据", 1); } #endregion return Json(json); }
这里使用 Dictionary<string, Object> json = new Dictionary<string, Object>();Dictionary的结构是这样的:Dictionary<[key], [value]>提供快速的键值查找的方式,把输入异步给统计图。
如果数据是单选的,可以使用switch进行判断,如果是多选的话,请使用if进行判断。分享出来希望能帮到大家
asp.net MVC项目开发之统计图echarts后台数据的处理(三)
标签:
原文地址:http://www.cnblogs.com/myhomebo/p/5798721.html