gpt4 book ai didi

Django 查询集按索引访问问题

转载 作者:行者123 更新时间:2023-12-02 04:11:49 25 4
gpt4 key购买 nike

我有一个带有created_at字段的客户端模型。我想从 shell 更新客户端的created_at。我做了以下事情:

>>> c = Client.objects.all()
>>> c[1].created_at
>>> # I get nothing here since it's not set yet
>>> from django.utils import timezone
>>> c[1].created_at = timezone.now()
>>> c[1].save()
>>> c[1].created_at
>>> # I still get nothing here. Even when I reload the queryset, I get nothing.

但是,当我使用 c = Client.object.get(id=1) 执行相同操作时,它会起作用。为什么会出现这种情况?

最佳答案

您需要将查询集对象分配给它自己的实例,然后它将保存,您上面所做的只是编辑查询集项

c = Client.objects.all()
obj = c[1]
obj.created_at = timezone.now()
obj.save()

关于Django 查询集按索引访问问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36266172/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com