首页 > 代码库 > MVC-AJAX-JSON
MVC-AJAX-JSON
前台:
function get_page_count() { $.ajax({ type: "GET", data: { typeId: $("#select").val(), keyWord: $("#key_word").val() }, cache: false, url: ‘/ResourceProvie/get_pageCount‘, dataType: "json", success: function (result) { alert("a" + result); }, error: function (result) { alert(result); alert("b"); } } );
后台:
public ActionResult get_pageCount(int? typeId, string keyWord) { int pageCount = 0; _resourceRepository.get_pageCount(typeId, keyWord, ref pageCount); Hashtable hash = new Hashtable(); hash["pageCount"] = pageCount; return Json(hash,"text/html;charset=UTF-8"); }
MVC-AJAX-JSON
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。