python Django ORM ,用filter方法表示“不等于”
2021-05-02 13:29
阅读:758
标签:filter djang 如何 pps 过滤 条件过滤 str name objects 如果想按条件过滤掉某些数据,用filter方法。但如何表示“不等于”这个概念呢? 这种写法是不对的,正确写法是: python Django ORM ,用filter方法表示“不等于” 标签:filter djang 如何 pps 过滤 条件过滤 str name objects 原文地址:https://www.cnblogs.com/DJRemix/p/13202605.htmlmyapps = App.objects.filter(name != ‘‘))
myapps = App.objects.filter(~Q(name != ‘‘))
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python Django ORM ,用filter方法表示“不等于”
文章链接:http://soscw.com/index.php/essay/81354.html
文章标题:python Django ORM ,用filter方法表示“不等于”
文章链接:http://soscw.com/index.php/essay/81354.html
评论
亲,登录后才可以留言!