我想对一个包含一些简单引号的模型进行查询:
Operation.objects.exclude(field__icontains="'foobar'")
但它不起作用。
使用\来转义'char
Operation.objects.exclude(field__icontains="'foobar'")
在python中:
>>> a = "'hi'"
>>> print a
'hi'