2010-11-27 7 views

答えて

4

私はあなたがどちらかを探していると思う:

Example.objects.filter(field__isnull=False) 

か:

Example.objects.exclude(field__isnull=True) 
+0

どうもありがとう!!! – user469652

2
example_objects = Example.objects.exclude(field=None) 
0

方法について

example_objects = Example.objects.exclude(field =null)

-1

使用NullBooleanFeild以下のように::

happy = models.NullBooleanField(null=True, blank=True) 
+0

この回答は質問を読んでいないことを示しています。 –

関連する問題