gpt4 book ai didi

google-app-engine - template.render() Google App Engine (python)

转载 作者:行者123 更新时间:2023-12-02 18:15:29 24 4
gpt4 key购买 nike

我正在使用 google 的 webapp 框架来实现此目的。我在 get 方法中使用 template.render() 来为我呈现模板。

我正在使用以下代码来为我执行此操作

path = os.path.join(os.path.dirname(__file__), file_name)
self.response.out.write(template.render(path, template_values))

其中 file_name 是要渲染的模板,template_values 是包含要渲染的任何值的 dict() 。如果我没有任何想要呈现的值怎么办?我是否只传递一个空的 dict() 对象?对我来说这似乎不是一个很好的解决方案。我应该使用 template.load() 吗?

(我在谷歌应用程序引擎上也找不到模板类的文档,因此我问。)

最佳答案

你可以向它传递一个空字典,它不会介意。你只需要给它发送一些东西。您的模板不会显示任何内容。

template_values = {}

path = os.path.join(os.path.dirname(__file__), file_name)
self.response.out.write(template.render(path, template_values))

关于google-app-engine - template.render() Google App Engine (python),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2179599/

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