django-orm

django-orm

文章 1 浏览 82

如何使用“AND” 在 Django 过滤器中?

如何创建“AND”过滤器来检索 Django 中的对象? 例如,我想检索在单个字段中包含两个单词组合的行。 例如,当我在 mysql 数据库上运行以下 SQL 查询…

不语却知心 2024-07-18 02:48:24 10 0

Django ORM:缓存和操作ForeignKey对象

考虑以下太空征服游戏的 models.py 框架: class Fleet(models.Model): game = models.ForeignKey(Game, related_name='planet_set') owner = models.…

朕就是辣么酷 2024-07-15 13:00:31 10 0

帮助删除 Django 中的记录

for u in Users.objects.all(): for g in u.group.all(): if g not in Groups.objects.filter(domain__user=u.id): u.group.filter(id=g.id).delete(…

花开浅夏 2024-07-15 05:29:58 10 0

如何使用 Django ORM 查询这个多对多示例?

我有以下模型: class Author(models.Model): author_name = models.CharField() class Book(models.Model): book_name = models.CharField() class A…

宛菡 2024-07-13 09:36:01 9 0

Django ORM:获取满足特定条件的最新先前对象

给定一个像这样的对象: class M(models.Model): test = models.BooleanField() created_date = models.DateTimeField(auto_now_add=True) 给定示例数…

心房敞 2024-07-12 08:57:52 9 0

Django - 带有配套存储字段的自定义虚拟模型字段

Closed. This question is off-topic. It is not currently accepting answers. 想要改进此问题吗?更新问题,使其关于- Stack Overflow 的主题。 15…

伤感在游骋 2024-07-12 07:46:55 8 0

如何获取 Django 中模型具有反向关系的所有类的集合?

给定: from django.db import models class Food(models.Model): """Food, by name.""" name = models.CharField(max_length=25) class Cat(models.M…

血之狂魔 2024-07-08 12:29:56 9 0

Django: Display a model and a count of how often another model uses it

I am creating a TODO list that categorizes tasks by their status. IE: Waiting, Today, Tomorrow, Scheduled. My models look something like: cl…

Bonjour°[大白 2022-09-06 08:11:57 17 0
更多

推荐作者

佚名

文章 0 评论 0

羁客

文章 0 评论 0

文章 0 评论 0

夏日落

文章 0 评论 0

隐诗

文章 0 评论 0

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文