如何在django中将数据发送到base.html?
我正在寻找一种方法来抽象 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
不,你不会。而是编写自定义模板标签。
No you wouldn't. Write a custom template tag instead.
如果您需要添加所有模板(包括 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/