Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从一个子目录提供一个 HTML 页面(不是“静态”页面,通过 YAML,不是“模板”页面,通过 Django 或 Jinja)
如何在self.response.out.write(?) 语句中引用路径 + 文件名?
self.response.out.write
我不确定我是否理解了,但我觉得你想考虑没有模板的 HTML 文件。
如果是这样,您可能想尝试此解决方案...
您可以按如下方式定义路径:
path = os.path.join(os.path.dirname(__file__), 'your_directory/your_html.html')
然后,您可以像这样打印 HTML 的内容:
self.response.out.write(template.render(path, 0))