我正在尝试使用 Python 瓶编写 WSGI 应用程序。我安装了瓶子,现在我将它与 Apache 的 mod_wsgi 模块一起运行,如下所述:http ://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide
我想做的是根据 URL(请求)返回一个 JSON 文件。我设法做到了,但我认为这不是正确的方法,因为它充满了变通方法。我的意思是 1我不能返回 JSON 变量,因为 Apache 抱怨
RuntimeError: response has not been started
2 mod_wsgi 要求我的可调用对象命名为“应用程序”并接受 2 个参数,这意味着我不能使用“@route”属性,如下所述:http ://webpython.codepoint.net/wsgi_application_interface
因此,对于1 ,我使用了 json.dumps 方法,对于2,我将路由作为环境变量。您能否告诉我在这种情况下如何使用“@route”属性和 Python 瓶的最佳实践?我如何处理这两个问题如下所示:
#!/usr/bin/python
import sys, os, time
import json
import MySQLdb
import bottle
import cgi
os.chdir( os.path.dirname( __file__ ) )
bottle.debug( True )
application = bottle.default_app( )
@bottle.route( '/wsgi/<parameter>' )
def application( environ, start_response ) :
# URL = bottle.request.method
URL = environ["PATH_INFO"]
status = '200 OK'
response_headers = [('Content-type', 'application/json')]
start_response( status, response_headers )
demo = { 'status':'online', 'servertime':time.time(), 'url':URL }
demo = json.dumps( demo )
return demo