久久福利_99r_国产日韩在线视频_直接看av的网站_中文欧美日韩_久久一

您的位置:首頁技術文章
文章詳情頁

使用 django orm 寫 exists 條件過濾實例

瀏覽:2日期:2024-10-02 09:40:04

要用django的orm表達sql的exists子查詢,是個比較麻煩的事情,需要做兩部來完成

from django.db.models import Exists, OuterRef # 1. 定義子查詢條件relative_comments = Comment.objects.filter( post=OuterRef(’pk’), # 注意外鍵關聯(lián)方式:post為Comment表的字段,pk表示關聯(lián)另一表主鍵) # 2. 使用annotate和filter共同定義子查詢Post.objects.annotate( # 使用exists定義一個額外字段 recent_comment=Exists(recent_comments),).filter(recent_comment=True) # 在條件中通過檢查額外字段實現(xiàn)exists子查詢過濾

這種方式比較麻煩,有其它簡便方式的歡迎分享

官網(wǎng)參考: https://docs.djangoproject.com/en/2.1/ref/models/expressions/#filtering-on-a-subquery-expression

補充知識:關于使用django orm 時的坑

跨app 時外鍵報錯

class Host(models.Model):nid = models.AutoField(primary_key=True)hostname = models.CharField(max_length=32, db_index=True)ip = models.GenericIPAddressField(protocol=“ipv4”, db_index=True)port = models.IntegerField()# b = models.ForeignKey(to=“Business”, to_field=‘id’)class HostToApp(models.Model):hobj = models.ForeignKey(to=‘Host’, to_field=‘nid’)aobj = models.ForeignKey(to=‘Application’, to_field=‘id’)class Application(models.Model):name = models.CharField(max_length=32)

以上 model 都在一個models 文件下時不會報錯。 但是一旦出現(xiàn)跨app 時會報以下錯誤:

users.HostToApp.aobj: (fields.E300) Field defines a relation with model ‘Application’, which is either not installed, or is abstract.users.HostToApp.aobj: (fields.E307) The field users.HostToApp.aobj was declared with a lazy reference to ‘users.application’, but app ‘users’ doesn’t provide model ‘a(chǎn)pplication’.

解決方案:

1、

from xxxx.models import Application

2、

class HostToApp(models.Model):hobj = models.ForeignKey(to=‘Host’, to_field=‘nid’)aobj = models.ForeignKey(to=‘xxxx.Application’, to_field=‘id’)

第二步很重要

以上這篇使用 django orm 寫 exists 條件過濾實例就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持好吧啦網(wǎng)。

標簽: Django
相關文章:
主站蜘蛛池模板: 亚洲精品三级 | 成人国产一区二区 | 99热播在线 | 久久亚洲欧美日韩精品专区 | 成人精品一区 | 久久一区| 久久成人免费 | 国产成人亚洲综合 | 综合久久国产九一剧情麻豆 | 国产免费一区二区 | 亚洲欧美一区二区精品中文字幕 | 爱草在线| 欧美精品在线一区二区三区 | 成人高清视频在线观看 | 羞羞视频网站在线免费观看 | 超碰一区二区三区 | a中文在线视频 | 日韩欧美第一页 | 国产不卡免费视频 | 国产精品久久一区 | 9999亚洲| 亚洲免费在线观看 | 日韩a∨ | 草草网站 | 成人伊人| 91久久精品国产亚洲a∨麻豆 | 午夜在线观看影院 | 韩国精品一区 | 日本黄色免费播放 | 国产精品久久片 | 本道综合精品 | 日韩综合网| 三级黄色在线视频 | 在线免费观看成年人视频 | 国模一区二区三区 | 91资源总站| 久久亚洲国产精品 | 久久久成人精品视频 | 一区二区在线影院 | 色精品| 在线一区二区免费 |