有没有办法更改每个请求的 Jinja2 模板加载目录?

发布于 2024-10-16 08:38:46 字数 185 浏览 1 评论 0原文

有没有办法在 Flask 上根据请求更改 Jinja2 根目录?现在我这样做:

app.jinja_loader = FileSystemLoader(template_directory)

但它似乎每个进程只工作一次(该进程首先选择正确的目录,然后保留在那里,无论我做了多少更改)...

Is there a way to change the Jinja2 root directory per-request on Flask? Right now I do:

app.jinja_loader = FileSystemLoader(template_directory)

but it seems to work only once per process (the process chooses the correct directory at first and then stays there, no matter how many changes I make)...

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

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

发布评论

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

评论(2

可爱咩 2024-10-23 08:38:46

事实证明,Jinja 缓存错误阻止了正确的模板加载,因此禁用缓存是有效的:

app.jinja_env.cache = None

It turns out that a Jinja caching bug is preventing the correct template from loading, so disabling the cache works:

app.jinja_env.cache = None
失而复得 2024-10-23 08:38:46

您可以尝试以下操作:

app._get_current_object().jinja_loader = FileSystemLoader(template_directory)

文档 http://flask.pocoo.org/docs/ api/#notes-on-proxieshttp:// /werkzeug.pocoo.org/docs/local/#werkzeug.local.LocalProxy._get_current_object

You can try this:

app._get_current_object().jinja_loader = FileSystemLoader(template_directory)

Docs http://flask.pocoo.org/docs/api/#notes-on-proxies or http://werkzeug.pocoo.org/docs/local/#werkzeug.local.LocalProxy._get_current_object

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