标签: django django-queryset
我想在模型上查询包含一些简单引用的内容:
Operation.objects.exclude(field__icontains="'foobar'")
但它不起作用。
答案 0 :(得分:0)
使用\来转义'char
Operation.objects.exclude(field__icontains="\'foobar\'")
在python中:
>>> a = "\'hi\'" >>> print a 'hi'