我想用jq的ajax异步的获取后台返回的数据,但是获取有误,跳到error的方法中了,不知要怎么用:我的代码如下:
后台:
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"); }
前台:
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"); } } );
返回时用这个应该就可以了
return Json(new { pagecount=pageCount});
还是不行的,也跳到error那里
怎么在mvc 的异步获取Json数据的?能不能给个例子? 你上面这样获取html是没问题的,但获取json就有问题了,是不是要设置什么特性的?
@韦锦业: 返回的是什么值?
@韦锦业: 而且一般用这种方法的,似乎都是用的post方法
@sinhbv: - -,果然改为post就行的,是什么原因呢?
@韦锦业: 默认应该是不允许get获取的,除非你用
return Json(new { pagecount=pageCount}, JsonRequestBehavior.AllowGet);