python Django ORM ,用filter方法表示“不等于”

2021-05-02 13:29

阅读:758

标签:filter   djang   如何   pps   过滤   条件过滤   str   name   objects   

如果想按条件过滤掉某些数据,用filter方法。但如何表示“不等于”这个概念呢?

myapps = App.objects.filter(name != ‘‘))

这种写法是不对的,正确写法是:

 

myapps = App.objects.filter(~Q(name != ‘‘))

python Django ORM ,用filter方法表示“不等于”

标签:filter   djang   如何   pps   过滤   条件过滤   str   name   objects   

原文地址:https://www.cnblogs.com/DJRemix/p/13202605.html


评论


亲,登录后才可以留言!