Django过滤器-多个值

时间:2018-11-28 08:43:56

标签: python django filter

所以有一点问题:

genres = (x, y, z,...)
search = Movie.filter(Q(genres=x) | Q(genres=y| ...)

我可以在django中按此进行过滤,并在一个这样的变量中添加 但我不知道流派会有多少个变量。那么有可能吗?

1 个答案:

答案 0 :(得分:5)

为什么不Movie.objects.filter(genres__in=genres)

Documentation