Django - 将 HTML 输出获取到变量中

发布于 2024-10-10 17:47:42 字数 142 浏览 3 评论 0原文

而不是使用将 HTML 输出发送回浏览器的 render_to_response

我想获取结果,生成 HTML(使用模板)&将 html 输出到我的 views.py 中的变量中。我该怎么做?

instead of using render_to_response which will send the HTML output back to browser.

I would like to take the results, generate HTML (using templates) & output the html into a variable in my views.py. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

孤者何惧 2024-10-17 17:47:42

解决了!执行此操作的方法 -

from django.template.loader import render_to_string
rendered = render_to_string('my_template.html', { 'foo': 'bar' })

感谢 ned 指向 Django 文档

SOLVED! the way to do this -

from django.template.loader import render_to_string
rendered = render_to_string('my_template.html', { 'foo': 'bar' })

thanks to ned for pointing to the Django docs

昵称有卵用 2024-10-17 17:47:42

改编自 Django 文档

from django.template import Context, Template
t = Template("My name is {{ my_name }}.")
c = Context({"my_name": "Adrian"})
output = t.render(c)

Adapted from the Django docs:

from django.template import Context, Template
t = Template("My name is {{ my_name }}.")
c = Context({"my_name": "Adrian"})
output = t.render(c)
北凤男飞 2024-10-17 17:47:42

还有一种更简单的方法(如果你需要从 render 方法中提取 html 数据):

R = render('template.html', context)
data = str(R.content)

There is even a simpler way (if you need to extract html data from render method):

R = render('template.html', context)
data = str(R.content)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文