如何获取 django-mptt 树中的最后一个孩子?

发布于 2024-08-02 17:41:40 字数 62 浏览 9 评论 0原文

我想访问 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 技术交流群。

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

发布评论

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

评论(1

人│生佛魔见 2024-08-09 17:41:40

在 python 代码中,您可以使用 get_children 方法。这应该可行:

children = node.get_children()
if children:
    last_child = list(children)[-1]

要在模板中使用它,您需要编写一个简单的模板标记:

from django import template
register = template.Library()

@register.simple_tag
def last_child(node):
    children = node.get_children()
    if children:
        return list(children)[-1]
    else:
        return ""

看看 Django 文档 了解如何将此标签集成到您的项目中。

In python code, you can use the get_children method. This should work:

children = node.get_children()
if children:
    last_child = list(children)[-1]

To use this in a template, you'd need to write a simple template tag:

from django import template
register = template.Library()

@register.simple_tag
def last_child(node):
    children = node.get_children()
    if children:
        return list(children)[-1]
    else:
        return ""

Have a look at the Django documentation to find out how to integrate this tag into your project.

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