public ActionResult GetAllUserInfos() { // //分页的数据 // int pageIndex = Request["page"] == null ? 1 : int.Parse(Request["page"]); int pageSize = Request["rows"] == null ? 10 : int.Parse(Request["rows"]); int total = 0; var data = _userInfoService.LoadPagerEntities(pageSize, pageIndex, out total, u => true, true, u => u.ID); var result = new { total = total, rows = data }; return Json(result, JsonRequestBehavior.AllowGet); }
可以参考一下!
几个JSON变为一个XML
需要有一个固定的结构就可以,网上有很多的JSON->xml 或者是xml->JSON 的方法的。可以直接拿来用