gpt4 book ai didi

python - Django pre_save 触发了两次

转载 作者:太空狗 更新时间:2023-10-30 02:23:11 27 4
gpt4 key购买 nike

我正在使用 Django 信号进行数据反规范化。这是我的代码:

# vote was saved
@receiver(pre_save, sender=Vote)
def update_post_votes_on_save(sender, instance, **kwargs):
""" Update post rating """
# is vote is being updated, then we must remove previous value first
if instance.id:
old_vote = Vote.objects.get(pk=instance.id)
instance.post.rating -= old_vote.value
# now adding the new vote
instance.post.rating += instance.value
instance.post.save()

我不明白为什么,但是当我的 Vote 实例被保存时, update_post_votes_on_save() 被调用了两次。我认为我的代码中存在错误,但通过管理界面保存会得到相同的结果。

文档说了一些关于 using dispatch_uid to prevent duplicate calls 的内容,但我无法理解是否是这种情况。如何使用dispatch_uid?我试过这个,但没有运气:

@receiver(pre_save, sender=Vote, dispatch_uid="my_unique_identifier")

知道为什么函数被调用两次以及如何避免吗?

最佳答案

很抱歉让您感到困惑,但是 dispatch_uid 毕竟解决了这个问题。请记住,在对 SO 提问之前,您可能必须重新启动开发服务器才能看到效果 :)

关于python - Django pre_save 触发了两次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5718244/

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