gpt4 book ai didi

python - Google App Engine 处理程序不显示内容

转载 作者:行者123 更新时间:2023-12-01 05:49:07 25 4
gpt4 key购买 nike

您好,我正在尝试让我的 Google App Engine 应用程序在本地主机上运行,​​但在尝试运行它时遇到了问题。

这是我尝试运行的代码:

# helloworld.py    

import webapp2

class MainHandler(webapp2.RequestHandler):
def get(self):
#"Test" text is not displayed
self.response.write("Test")

app = webapp2.WSGIApplication([('/', MainHandler)],
debug=True)

#This line prints the content
print "This works fine"

当我在本地主机上运行开发服务器时,我得到代码 200 作为响应,但处理程序似乎没有正确执行。

有什么想法吗?

最佳答案

您的代码看起来不错,只需确保您的 app.yaml 中的处理程序正确即可。它应该看起来像这样:

application: helloworld
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:
- url: .*
script: helloworld.app

libraries:
- name: webapp2
version: "2.5.2"

如果您还没有完成,您还应该完成 Getting Started tutorial .

关于python - Google App Engine 处理程序不显示内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15052721/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com