2010-02-08 36 views

回答

5

使用一個,__contains等與exclude()代替filter()

3

您也可以使用Q object並否定它。

E.g.

Poll.objects.filter(~Q(question='Who')) 
相關問題