我想从Django应用访问本地html文件。
这些文件是在使用Web应用程序时生成的。
怎么办? 我应该将它们存储在特定的文件夹中吗?
非常感谢
答案 0 :(得分:0)
对于那些可能引起关注的人,我将其包含在模板内部生成的html文件中解决了。
view.py
filepath = 'html_file.html'
with open(filepath,'r') as f:
content = f.readlines()
context = {'html_content': content}
return render(request, 'template.html', context)
template.html
{{ html_content|safe }}