我正在使用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")
为什么函数被调用两次以及如何避免它的任何想法?
答案 0 :(得分:6)
对不起,我很抱歉,但dispatch_uid
解决了这个问题。请记住,在向SO提出问题之前,您可能必须重新启动开发服务器以查看效果:)