Django - contains and icontains

on under django
1 minute read

django doc

장고 문서에 따르면 contains는 대소문자를 구분하고 icontains는 대소문자를 구별하지 않는다고 한다.

if q:
    qs = qs.filter(title__contains=q)

하지만 테스트 서버에서는 제대로 대소문자 구별이 제대로 적용이 안되었다. SQLite는 대소문자를 구별하는 LIKE 문을 지원하지 않기 때문이다.

django
comments powered by Disqus