django,查询集上的简单引用

时间:2011-07-04 11:27:48

标签: django django-queryset

我想在模型上查询包含一些简单引用的内容:

Operation.objects.exclude(field__icontains="'foobar'")

但它不起作用。

1 个答案:

答案 0 :(得分:0)

使用\来转义'char

Operation.objects.exclude(field__icontains="\'foobar\'")

在python中:

>>> a = "\'hi\'"
>>> print a
'hi'