我最近让我的第一个应用程序在 uWSGI 中与 Cherokee 一起工作。我使用了以下来自uWSGI 文档的代码:
def application(environ, start_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
yield 'Hello World\n'
页面正确读取Hello World
。当我将该文本更改为New Thing
并刷新时,没有任何变化。我忘记了什么?
我试过的:
- 清除浏览器历史记录和缓存
- 停止和启动切诺基
编辑:为了澄清,我在 Python 代码中更改
Hello World
为。New Thing
然后我停止 Cherokee,刷新,我显然看到了一条错误消息。我重新启动 Cherokee,刷新,我看到了Hello World
。