如何在django中将数据发送到base.html?

发布于 2024-11-09 13:28:56 字数 167 浏览 0 评论 0原文

我正在寻找一种方法来抽象 django 中的导航栏并将其包含在 base.html 中;直接或通过模板包含。

我完全迷失的部分是,如何将数据附加到上下文,以便导航栏可以从数据库获取其内容。

我想查询views.py 中的数据并使其可用于模板,以便我可以构建导航栏。

谢谢。

I'm looking for a way to abstract a navigation bar in django and include it in base.html; directly or through a template inclusion.

The part where I'm totally lost is, how to append data to the context so the nav bar can get its contents from database.

I'd like to query the data in views.py and make it available for the template so I can build the nav bar.

Thanks.

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

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

发布评论

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

评论(2

闻呓 2024-11-16 13:28:56

不,你不会。而是编写自定义模板标签

<html>
 ...
<div class="navbar">{% navbar %}</div>
 ...
</html>

No you wouldn't. Write a custom template tag instead.

<html>
 ...
<div class="navbar">{% navbar %}</div>
 ...
</html>
一抹微笑 2024-11-16 13:28:56

如果您需要添加所有模板(包括 base.html)都可用的信息,您应该查看 context_processor.py。这可以将信息添加到上下文中,以便您的页面具有可用的数据。
我在这里找到了一个关于此的博客: http://www .b-list.org/weblog/2006/jun/14/django-tips-template-context-processors/

If you need to add information that needs to be available to all templates including base.html you should look at the context_processor.py. This can add information to the context so your page have the data aviailable.
I found a blog about this here: http://www.b-list.org/weblog/2006/jun/14/django-tips-template-context-processors/

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