亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

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

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

瀏覽:4日期: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’), # 注意外鍵關聯方式:post為Comment表的字段,pk表示關聯另一表主鍵) # 2. 使用annotate和filter共同定義子查詢Post.objects.annotate( # 使用exists定義一個額外字段 recent_comment=Exists(recent_comments),).filter(recent_comment=True) # 在條件中通過檢查額外字段實現exists子查詢過濾

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

官網參考: 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 文件下時不會報錯。 但是一旦出現跨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 ‘application’.

解決方案:

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 條件過濾實例就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持好吧啦網。

標簽: Django
相關文章:
主站蜘蛛池模板: 亚洲综合色丁香婷婷六月图片 | 免费在线视频一区 | 久久精品九九 | 国产精品不卡片视频免费观看 | 欧美三级蜜桃2在线观看 | 超91精品手机国产在线 | 一级做a免费视频观看网站 一级做a爰毛片 | 99精品国产成人一区二区在线 | 成人在线一区二区三区 | 久久精品视频免费观看 | 草草影院ccyy国产日本欧美 | 欧美一级片毛片免费观看视频 | 真实国语对白视频播放 | 欧美一区二区三区播放 | 伊人久久精品亚洲精品一区 | 在线亚洲欧美日韩 | 日本无卡无吗在线 | 国产younv真实| 日本一级免费 | 国产精品视频第一区二区 | 久久成人免费大片 | 无码一区二区三区视频 | 国产精品女上位在线观看 | 国产ppp在线视频在线观看 | 中国一级特黄特爽刺激大片 | 久久综合综合久久 | 精品国产一区二区三区不卡在线 | 国产aaa免费视频国产 | 亚洲h片 | 国产又黄又爽又色视频观看免费 | 亚洲精品一区二区深夜福利 | 麻豆视频成人 | 国产精品自拍视频 | 国产私拍视频 | 精品视频在线观看一区二区 | 91精品国产亚一区二区三区 | 欧美人成网站免费大全 | 美国一级特黄 | 日韩中文字幕在线不卡 | 香蕉网站视频 | 国产资源在线观看 |