如何获取 django-mptt 树中的最后一个孩子?
我想访问 django-mptt 树的最新对象。
是否可以通过 django 模板执行此操作?
I want to access the latest object a django-mptt tree.
Is it possible to do this from a django template?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 python 代码中,您可以使用 get_children 方法。这应该可行:
要在模板中使用它,您需要编写一个简单的模板标记:
看看 Django 文档 了解如何将此标签集成到您的项目中。
In python code, you can use the get_children method. This should work:
To use this in a template, you'd need to write a simple template tag:
Have a look at the Django documentation to find out how to integrate this tag into your project.