public JsonResult JsonData()
Json(db.Weathers.ToList()) 반환;
}
json
메서드는 다음과 같이 재구성됩니다.
protected Internal JsonResult Json
(object data); protected Internal JsonResultJson(객체 데이터, JsonRequestBehavior 동작);두 번째만 사용하면 됩니다. 이전 json 요청 동작은 괜찮습니다
public JsonResult GetPersonInfo() { var person = new { Name = "张3", Age = 22, Sex = "Male" }; return
Json(person,JsonRequestBehavior.AllowGet); }이러한 방식으로 Get 메서드를 사용하여 프런트 엔드:
view
$.ajax({ url: "/FriendLink/GetPersonInfo", 유형: "POST", dataType: "json
", 데이터: { }, 성공: 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 결과에 대한 예제 코드의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!