是否可以集成 django-taggit 和 django-mptt / django-treebeard?
我正在开发一个需要标记不同类型内容的网站,这有利于使用 django-taggit。但是,如果标签以其自然层次结构在数据库中表示,这将非常有益,有利于使用 django-mptt 或 django-treebeard。
将 taggit 的通用标记功能与 mptt / Treebeard 提供的树结构集成的最佳解决方案是什么?
I am developing a website that requires tagging up different types of content, which favors using django-taggit. But, it would be extremely beneficial if the tags were represented in the database in their natural hierarchy, favoring use of django-mptt or django-treebeard.
What is the best solution to integrate the generic tagging functionality of taggit with the tree-structure provided by mptt / treebeard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过模型使用了 treebeard 和 taggit 的自定义 实现分层标签。
I used treebeard and taggit's custom through models to implement hierarchical tags.
昨天才发现这个,所以我无法确定这是否是您要找的:
django-类别
一种在 django 中处理一个或多个层次类别树的方法。
Just found this yesterday, so I can't really tell if it's what you're looking for:
django-categories
A way to handle one or more hierarchical category trees in django.