>  기사  >  웹 프론트엔드  >  json data_jquery 처리를 위한 jQuery getJSON 코드

json data_jquery 처리를 위한 jQuery getJSON 코드

WBOY
WBOY원래의
2016-05-16 18:22:331223검색

HTML 코드:

코드 복사 코드는 다음과 같습니다.









Ashx 핸들러: json 형식으로 객체를 반환해야 하는 경우 MIME 유형을 "application/json"으로 설정해야 합니다.
jQuery 소스 파일을 보면 getJSON이 다음과 같이 구현된 것을 확인할 수 있습니다.
getJSON: function( url, data, callback) {
return jQuery.get(url, data, callback, "json" ");
},
코드 복사 코드는 다음과 같습니다.

공개 void ProcessRequest(HttpContext 컨텍스트)
{
if (context.Request.Params["type"].Equals("ajax"))
{
context.Response.ContentType = "text/plain ";
}
else
{
context.Response.ContentType = "application/json";
}
GetInfo(context);
}
public bool IsReusable
{
get
{
return false
}
}
public void GetInfo(HttpContext context)
{
System.Collections.Generic. List listUser = UserInfoManage .GetUserInfoBySQL("Userinfo에서 상위 5개 * 선택")
IsoDateTimeConverter timeConverter = new IsoDateTimeConverter()
timeConverter.DateTimeFormat = "yyyy'-'MM'-'dd' ' HH':'mm': 'ss";
string ResJsonStr = JsonConvert.SerializeObject(listUser, timeConverter);
context.Response.Write(ResJsonStr);
}
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.