首頁  >  文章  >  後端開發  >  關於json result的實例代碼

關於json result的實例代碼

零下一度
零下一度原創
2017-06-24 09:25:402001瀏覽

public JsonResult JsonData()
        {
            HttpContext.Response.AppendHe       
            return Json(db. Weathers.ToList());
        }

#json

方法有一個重構:

protected internal JsonResult

Json( object data); protected internal JsonResult Json(object data, JsonRequestBehavior behavior);##我們只需要使用第二種就行了,加上一個json

請求行為為Get方式就OK了

public JsonResult GetPersonInfo() { var person = new { Name = "張三", Age = 22, Sex = "男" };

return

Json(person,JsonRequestBehavior.AllowGet); } 

這樣一來我們在前端就可以使用Get方式要求了:

 

view

#$.ajax({ url: "/FriendLink/ GetPersonInfo", type: "POST", dataType: "

json

", data: { }, success: function(data) { $("#friendContent").html(data.Name); } } ) 

<!DOCTYPE html><html><head runat="server"><title>Index2</title><script src="\Scripts\jquery-1.10.2.min.js?1.1.11" type="text/javascript"></script><script type="text/javascript">var login = function () {
            $.ajax({ type: "post", url: "http://localhost:4968/Weathers/JsonData", data: null, success: function (res) {
                alert(JSON.stringify(res));
            }, dataType: "json"});
        }</script></head><body><div id="nav"><a href="/Home/Index">ajax+Handler</a>  <a>ajax+action</a></div><div><h3>Login</h3><button type="button" onclick="login()">Submit</button></div></body></html>

 
#

以上是關於json result的實例代碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn