gpt4 book ai didi

python - 'ReverseManyToOneDescriptor' 对象没有属性 'latest'

转载 作者:太空宇宙 更新时间:2023-11-03 12:37:49 28 4
gpt4 key购买 nike

我在尝试运行函数时收到此错误。这是我的第一个 django/python 项目,所以我没有这方面的经验。我已经搜索过此错误,但没有发现任何类似的错误。

def getpriority(chunks):
p = 0
for chunk in chunks:
a = chunk.result_set.all()
l = a.latest()
if pytz.utc.localize(datetime.now()) - l.timestamp > datetime.timedelta(days=3):
x = getresult(chunk)
print(x)

我正在尝试为我的 block 模型分配优先级,以便我可以选择具有最高优先级的 block 来使用该对象。

我认为我的错误是在“a”上调用 latest()

当我在 django shell 中运行 Chunk.result_set.latest() 时,出现以下错误:

Traceback (most recent call last):
File "<console>", line 1, in <module>
AttributeError: 'ReverseManyToOneDescriptor' object has no attribute 'latest'

在我的结果模型中,我设置了 get_latest_by,我认为这是运行 .latest() 所必需的:

class Result(models.Model):
rel_chunk = models.ForeignKey(Chunk, on_delete=models.CASCADE)
score = models.IntegerField()
timestamp = models.DateTimeField(auto_now_add=True)

class Meta:
get_latest_by = 'timestamp'

我认为错误在于我在相关对象集上调用 latest 但如果不能在相关对象集上调用那么我如何才能找到最新的相关结果?

最佳答案

应该是 chunk.result_set.latest() 而不是 Chunk.result_set.latest()

请注意,chunk 应该是实例而不是类模型。

关于python - 'ReverseManyToOneDescriptor' 对象没有属性 'latest',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40250430/

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