在Django上使用ManyToMany queryset的单个过滤器

我想根据来自不同模型的许多字段执行一些过滤器,但是卡住了。

我有这些模型

class Category(models.Model):
    eventtype = models.CharField(max_length=10, choices=event_type)
    category = models.CharField(max_length=60)
    values = models.CharField(max_length=60,null=True, blank=True)

class Userlogin(models.Model):
    name = models.CharField(max_length=100, null=True)
    category = models.ManyToManyField(Category)

class Events(models.Model):
    eventtype = models.CharField(max_length=4)
    status = models.CharField(max_length=1, choices=status, verbose_name='Status', default='I')
    category = models.ManyToManyField(Category)

所以根据我的用户选择的类别(Userlogin类),我想过滤事件。 例:

Userlogin 80 has choose ['openair','night']

Events:

Event 1 - ['openair','couples']

Event 2 - ['couples']

Event 3 - ['night','openair']

这应该返回事件1和3。

所以我有一个查询集有其他一些评估,现在我想用“事件”类别“加入”用户类别。

events = Events.object.filter(status='A')
events = events.filter(eventtype='X)
#some other complex filtering, based on other models
events = events.filter(category??????) #stuck here 

我怎么能这样做? 这里的诀窍是我需要继续使用这个查询集,所以我想用过滤器方法。

我正在使用django 1.9


# returns all the events which have any of the user_login categories
events = events.filter(category__in=user_login.category.all()).distinct()

django文档提供了有关跨模型查询m2m关系的详细信息。 请参阅https://docs.djangoproject.com/en/1.9/topics/db/examples/many_to_many/

链接地址: http://www.djcxy.com/p/38655.html

上一篇: Single filter with ManyToMany queryset on Django

下一篇: Django filter JSONField list of dicts