What benefit does Django-Taggit provide over a simple ManyToManyField() implementation of tagging?

痴心易碎 提交于 2020-01-01 10:14:59

问题


The API according to the documentation seems achievable with a simple ManyToManyField...what am I missing?

Sample from Django-Taggit documentation:

class Food(models.Model):
    # ... fields here

    tags = TaggableManager()

Then you can use the API like so::

>>> apple = Food.objects.create(name="apple")
>>> apple.tags.add("red", "green", "delicious")
>>> apple.tags.all()
[<Tag: red>, <Tag: green>, <Tag: delicious>]
>>> apple.tags.remove("green")
>>> apple.tags.all()
[<Tag: red>, <Tag: delicious>]
>>> Food.objects.filter(tags__name__in=["red"])
[<Food: apple>, <Food: cherry>]

回答1:


The real advantage is not in finding the tags of an object, but rather the objects for a tag. And specifically, if you have multiple types of objects that can be tagged, imagine:

class Food(models.Model):
   tags = models.ManyToManyField(Tag)

class Wine(models.Model):
   tags = models.ManyToManyField(Tag)

Now find me all the instances of objects tagged "purple". Taggit makes it a lot easier to do so.



来源:https://stackoverflow.com/questions/4180251/what-benefit-does-django-taggit-provide-over-a-simple-manytomanyfield-implemen

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!