美文网首页程序员
Django中多条件查询优化

Django中多条件查询优化

作者: 北海鲸落 | 来源:发表于2020-06-01 08:58 被阅读0次

    传统模式

    当查询条件为两个时,假设我们这里查询条件为tag、name

    if tag:
        if name:
            all_result = test.objects.filter(tag=tag, name=name)
        else:
            all_result = test.objects.filter(tag=tag)
    else:
        if name:
            all_result = test.objects.filter(name=name)
        else:
            all_result = test.objects.all()
    

    可想而知,当条件很多时,写这么复杂的工作,足以让人崩溃

    字典模式

    当采用字典存储字段时,可以很高效地优化编写工作

    search_dict = dict[]
    if tag:
        search_dict['tag'] = tag
    if name:
        search_dict['name'] = name
    all_result = test.objects.filter(**search_dict)
    

    两者代码行数对比,六行解决十行的工作

    相关文章

      网友评论

        本文标题:Django中多条件查询优化

        本文链接:https://www.haomeiwen.com/subject/yqcjzhtx.html