0
如何使用cherrypy返回jsonp?我目前使用下面的返回JSON:如何在cherrypy中返回jsonp?
class Root(object):
@cherrypy.expose
@tools.json_out
def index(self):
return {'key':'value'}
有一些標註爲JSONP?
如何使用cherrypy返回jsonp?我目前使用下面的返回JSON:如何在cherrypy中返回jsonp?
class Root(object):
@cherrypy.expose
@tools.json_out
def index(self):
return {'key':'value'}
有一些標註爲JSONP?
這個例子似乎只返回 '作品',它是如何真正返回JSONP? – Rolando 2013-02-21 18:28:37
標記:@jsonp運行jsonp處理程序。然後Jquery處理jsonp:$ .ajax({url:「localhost:8080 /」,data:{'key':'value'},dataType:「jsonp」,success:onMyMethodComplete}); – 2013-02-23 02:08:56
哦 - 這個鏈接有很好的jsonp信息... http://stackoverflow.com/questions/2067472/what-is-jsonp-all-about – 2013-02-23 02:16:43