MVC-AJAX-JSON
Posted 无懈可击
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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的主要内容,如果未能解决你的问题,请参考以下文章