class index:
def GET(self):
web.header('Content-type', 'text/html')
name = 'smallfish'
return render.index(name)
app = web.application(urls, globals())
main = app.cgirun() # 这行是发布到GAE的关键
# templates/index.html
$def with (name)
<b>hello, $name. test by web.py</b>
3. 发布到GAE,测试
e:\googleapp>appcfg.py update pynotes/
到这里,一个简单web.py应用就完成了,然后刷新。GAE显示500 Error!看后台GAE Log显示错误信息:”No module named templates“,去web.py官方溜达了一圈,发现在其cookbook里有一篇文档《How to use templates on Google App Engine》,里面说的很明白啦。因为web.py的模板在GAE上文件系统会有所限制,所有本地得compile一下,具体命令是:python web/template.py --compile templates 最后一个参数是本地对应模板目录templates,如果有多个模板目录则一次运行一次。运行完会在templates会生成一个__init__.py,里面内容有兴趣可以看看,很眼熟的哦。