新手在这里——我一直在尝试使用谷歌应用引擎在瓶子中创建一个“Hello World”。我得到了“hello world”部分显示,但即使在索引页面上,我也会得到以下输出:“Hello world!Status:500”
如果我尝试添加新路由(如'/page'路由),然后我导航到新路线,我收到“服务器错误:网站在检索时遇到错误......它可能因维护而关闭或配置不正确。” 在我导航到配置不正确的页面后,如果我尝试返回“/”,我也会收到服务器错误。我已将bottle.py 放在我的根目录中。有人可以帮我正确配置我的文件吗?谢谢!
import bottle
from bottle import route, template, request, error, debug
@route('/')
def index():
return "Hello World!"
@route('/page')
def page():
return 'page!'
bottle.debug(True)
bottle.run(server='gae')