在某些情况下,我想渲染模板,而在其他情况下,我想要提供模板文件。我将同一条路径传递到render_template
和send_file
,但只有send_file
有效。
resp = render_template('templates/index.html')
resp = send_file('templates/index.html')
答案 0 :(得分:2)
模板路径相对于模板根目录。 send_file
路径相对于应用根。
render_template('file.html')
send_file('templates/file.html')
除此之外,模板路径实际上不是文件系统路径,它们恰好在默认的Flask案例中看起来像它们。所以“模板根”真的意味着“模板加载器的查找路径”而不是“模板文件夹”。