我知道我可以在列表中使用__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
方法就是解决方案