0

我在 Python 中有一个简单的 Hello World 应用程序,我正在与 AppEngine 一起使用,但我想将它插入一个 HTML 文件中,如下所示:我有一个名为 test.html 的文件,上面有这个片段:

<center><img src="test.png></center>
// Here comes the Python App //

我想将 Python 应用程序的输出放在这个空间中,就像我可以使用 Servlets(Java) 一样。

问候。

4

3 回答 3

4

您应该阅读 AppEngine 站点上的入门文档。特别是围绕模板: http ://code.google.com/appengine/docs/python/gettingstarted/templates.html 。

于 2009-10-12T17:54:12.057 回答
2

使用 Django 模板 - 该模块内置于应用程序引擎中。我已经在第 42 行使用了它。使用的模板这里

于 2009-10-12T17:57:08.917 回答
1

我真的建议使用样板模板 https://github.com/coto/gae-boilerplate 这将为您提供用于开发有用和专业网站的布局和模板结构

于 2012-10-18T18:37:42.350 回答