问题引出
- 你可能遇到这种情况,在前端页面上有查询功能,要查询的输入选择有A,B,C等,可以通过任意一个查询,或者任意组合进行查询。
- 在后端,你可以使用
request.GET['A']
获取传入的数值。 - 我们需要判断哪个有输入,再在数据库中进行查询,这样比较麻烦。
解决方案
- 动态实现查询过程
kwargs = {}
if A is not None:
kwargs['name_startWith'] = A
if B is not None:
kwargs['address__contains'] = B
if C is not None:
kwargs['mobile_endWith'] = C
...
...
personList = Person.objects.filter(**kwargs)
...
- 注:
- A B C 等,为前端传输过来的数据
- name address mobile 等,需为你要查询的表的属性字段
- startWith contains endWith 等,为你要筛选的规则
- Person 为model 表名