gpt4 book ai didi

python - django在gae(谷歌应用引擎)中是否有类似 'render_template'的方法

转载 作者:行者123 更新时间:2023-12-01 06:13:54 25 4
gpt4 key购买 nike

这是我的 gae 代码:

class BaseRequestHandler(webapp.RequestHandler):
def render_template(self, filename, template_values={}):
values={
}
template_values.update(values)
path = os.path.join(os.path.dirname(__file__), 'templates', filename)
self.response.out.write(template.render(path, template_values))


class CounterHandler(BaseRequestHandler):
def get(self):
self.render_template('counters.html',{'counters': Counter.all()})

django有这个方法吗?
如何在 django 中创建类似 render_template 的方法?

最佳答案

是的,它称为render_to_response,解释如下:

http://docs.djangoproject.com/en/dev/topics/http/shortcuts/

关于python - django在gae(谷歌应用引擎)中是否有类似 'render_template'的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4357358/

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