[WebMethod]
        public ActionResult AjaxPager()
        {
            //获取发来的json
            string s = Request.QueryString.ToString();
            string s2 = Regex.Unescape(s);
            //转换json
            string[] formArray = s2.Split('=', '&');
            Dictionary<string, object> Infor = new Dictionary<string, object>();

            for (int i = 0; i < formArray.Length - 1; i = i + 2)
            {
                //将Unicode转为中文
                string nvalue = System.Web.HttpUtility.UrlDecode(formArray[i + 1]);
                Infor.Add(formArray[i], nvalue);

            }

            //dic转datatable
            DataTable dt = DictionaryToDataTable.DicToTable(Infor);
            //data映射到实体类中
            var user = DataConvert<t_acl_user>.ToList(dt);
            //获取实体类中的值
            foreach (var entity in user)
            {
                string ss =entity.Address;
                Console.WriteLine(ss);
            }
            return View();

        }