django – 在manytomany上的查询filter是空的
在Django中,有一种方法可以在多个空字段中进行过滤或为空。
class TestModel(models.Model): name = models.CharField(_('set name'), max_length=200) manytomany = models.ManyToManyField('AnotherModel', blank=True, null=True) print TestModel.objects.filter(manytomany__is_null=True)
print TestModel.objects.filter(manytomany=None)