filter删选条件
1、大于:__gt (gather than)
2、大于等于:__gte (gather than gather than)
3、小于:__lt ( less than)
4、小于等于:__gte (less than gather than)
5、包含:contains (区分大小写);icontains (不区分大小写);sqlite3数据库不生效
6、开头是:__startswith
7、结尾是:__endswith
8、其中之一:__in
9、范围:__range
exclude 排除条件
1、用法和 filter一样,都是得到查询( Queryset)
2、相当于 filter 条件取反,等于=>不等于