我在python 3中有一个简单的HelloWorld webservice代码:
from werkzeug.wrappers import Request, Response
@Request.application
def application():
return Response('Hello World!')
if __name__ == '__main__':
from werkzeug.serving import run_simple
run_simple('localhost', 4000, application)
我想在浏览器中对此进行测试...我尝试打开网址:“http://localhost:4000/application”但是它给出了错误“500”。 怎么解决这个问题?
答案 0 :(得分:0)
问题已经解决。变化
def application():
至def application(request):