标签:
apihandler.ashx?callback=eqfeed_callback:1Uncaught SyntaxError: Unexpected token :
原因在于jsonp传的数据格式不一样.
解决方法,后端处理json字符串如下:
jsonp(
.... my json ...
)
如 .net
string jsonp = context.Request["jsonpcallback"];
string str = "[{\"id\":\"1\",\"name\":\"张三\"},{\"id\":\"2\",\"name\":\"李四\"}]";
string strReturn = jsonp + "(" + str + ")";
借鉴自:
http://stackoverflow.com/questions/7936610/json-uncaught-syntaxerror-unexpected-token
标签:
原文地址:http://www.cnblogs.com/ignacio/p/5734270.html