.getjson回调函数
Posted 皮皮木有小JJ
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了.getjson回调函数相关的知识,希望对你有一定的参考价值。
res是定义的json类
//回调函数
string strJson = JsonConvert.SerializeObject(res);
string callback = Request.QueryString["jsoncallback"];
string data = strJson;
string result = string.Format("{0}({1})", callback, data);
Response.Expires = -1;
Response.Clear();
Response.ContentEncoding = Encoding.UTF8;
Response.ContentType = "application/json";
Response.Write(result);
Response.Flush();
Response.End();
以上是关于.getjson回调函数的主要内容,如果未能解决你的问题,请参考以下文章
使用命名函数作为 jQuery 中 $.getJSON 的回调来满足 Facebook 请求签名需求
jQuery.getJSON(url, [data], [callback])