Django - 将 HTML 输出获取到变量中
而不是使用将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
解决了!执行此操作的方法 -
感谢 ned 指向 Django 文档
SOLVED! the way to do this -
thanks to ned for pointing to the Django docs
改编自 Django 文档:
Adapted from the Django docs:
还有一种更简单的方法(如果你需要从 render 方法中提取 html 数据):
There is even a simpler way (if you need to extract html data from render method):