Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何用cherrypy返回jsonp?我目前正在使用以下内容返回 json:
class Root(object): @cherrypy.expose @tools.json_out def index(self): return {'key':'value'}
jsonp有一些注释吗?
看看这个实现......
jsonp
希望这可以帮助,
安德鲁