django,查询集上的简单引号



我想对一个包含一些简单引号的模型进行查询:

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

但它不起作用。

使用\来转义'char

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

在python中:

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

相关内容

  • 没有找到相关文章

最新更新