ORM之filter参数

Posted liusouthern

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ORM之filter参数相关的知识,希望对你有一定的参考价值。

exact: = %s,        
 
iexact: LIKE %s,
 
contains: LIKE BINARY %s,   
 
icontains: LIKE %s,     
 
regex: REGEXP BINARY %s,
 
iregex: REGEXP %s,
 
gt: > %s,
 
gte: >= %s,
 
lt: < %s,
 
lte: <= %s,
 
startswith: LIKE BINARY %s,
 
endswith: LIKE BINARY %s,
 
istartswith: LIKE %s,
 
iendswith: LIKE %s,
 

 

以上是关于ORM之filter参数的主要内容,如果未能解决你的问题,请参考以下文章

Django之ORM查询复习与cookie

ORM多表操作之一对多查询之下划线查询

ORM多表操作之多对多添加记录

python测试开发django-170.ORM查询之contains和icontains

python测试开发django-171.ORM查询之exact和iexact

python测试开发django-76.ORM查询之Q查询