asp.net MVC項目開發之統計圖echarts後臺數據的處理(三)

前臺顯示的東西,有相應的文檔很容易修改,後臺傳遞數據方式纔是咱們最關心的數據庫

首先要記住,咱們一步數據使用的是post,那麼後臺代碼咱們要給方法加上 [HttpPost]註解編程

否則異步沒有效果json

下面上代碼,爲了節省時間,字段變量的命名,我用的是英文1,2,3,不要見怪哦echarts

 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);
        }
View Code  

 這裏使用 Dictionary<string, Object> json = new Dictionary<string, Object>();Dictionary的結構是這樣的:Dictionary<[key], [value]>提供快速的鍵值查找的方式,把輸入異步給統計圖。異步

若是數據是單選的,能夠使用switch進行判斷,若是是多選的話,請使用if進行判斷。ide

總結:第一次完成統計圖走了很多彎路,在編程的道路上我仍是有點菜的鳥,接觸的越多越是感受到本身只是的貧乏,對於園子裏的大神,只能用仰視的角度去看了。 項目初期要學習統計圖,立刻加了一堆echarts羣,看文檔嘗試修改方式。數據庫的存儲過程的修改,後臺數據的轉換以及思路的整理花去的很多時間,路漫漫其長修遠,腳下的路還會很長。post

相關文章
相關標籤/搜索