ASP.NET MVC 4 中的JSON資料互動的方法

來源:互聯網
上載者:User
本篇文章主要介紹了ASP.NET MVC 4 中的JSON資料互動的方法,具有一定的參考價值,感興趣的小夥伴們可以參考一下。

前台Ajax請求很多時候需要從後台擷取JSON格式資料,一般有以下方式:

拼接字串


return Content("{\"id\":\"1\",\"name\":\"A\"}");

為了嚴格符合Json資料格式,對雙引號進行了轉義。

使用JavaScriptSerialize.Serialize()方法將對象序列化為JSON格式的字串 MSDN

例如我們有一個匿名對象:


var tempObj=new {  id=1,  name="A"}

通過Serialize()方法,返回Json字串:


string jsonData=new JavaScriptSerializer().Serialize(tempObj);return Content(jsonData);

返回JsonResult類型 MSDN

ASP.NET MVC 中,可以直接返回序列化的JSON對象:


public JsonResult Index(){  var tempObj=new   {    id=1,    name="A"  }    return Json(tempObj, JsonRequestBehavior.AllowGet); }

需要設定參數‘JsonRequestBehavior.AllowGet',允許GET請求。

前台處理返回的資料時,對於1,2種方法,需要使用JQuery提供的parseJSON方法,將返回的字串轉換為JSON對象:


$.ajax({  url:'/home/index',  success:function(data){    var result=$.parseJSON(data);    //...  }});

對於第三種方法,直接作為JSON對象使用即可。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.