我正在尝试运行瓶子hello world示例:
from bottle import route, run
@route('/hello')
def hello():
return "Hello World!"
run(host='localhost', port=8080, debug=True)
我运行此文件并在命令提示符下获取以下内容:
Bottle v0.12.9 server starting up (using WSGIRefServer())...
Listening on http://localhost:8080/
Hit Ctrl-C to quit.
但是,当我访问http://localhost:8080/hello时,我得到的是firefox的默认“服务器未找到”页面。