django查询charfield值是否在另一个字符串中

时间:2016-07-05 01:27:11

标签: python django

我知道我可以在列表中使用__in但是像python这样的东西:

# might not be able to separate on whitespace
'abc' in 'this_is a stringwith_abc+in it'  

除了我不想将字符串拆分成列表,因为我无法确定要拆分的字符。

类似于:

Model.objects.filter(charfield__in='blob of text to find field value within')

EDIT1:

__contained不是我想要的,如果有任何__contained_by方法就是解决方案

0 个答案:

没有答案