如何让Django查询从数据库中检索更新的信息?

时间:2012-05-03 23:55:46

标签: mysql django caching transactions

在我的Django项目中,我一直被困在交易问题上。我正在开发一个信使系统,当我向某个用户发送消息时,发送的消息在outbox div中正确显示(使用jQuery / Ajax,而不是刷新页面)。好吧,如果我发送另一条消息,现在发件箱中显示的新消息与之前发送的消息相同。

我发送的所有邮件都是第一个。在数据库表中,消息保存得很好,所以我猜问题来自查询。

接下来是查询:

@login_required(login_url='/')
def getmessage(request, mode=None):
if request.is_ajax():
    if request.method == "GET":
        # Retrieve last message sent by user
        Message.objects.update()
        q = Message.objects.filter(sender=request.user).order_by('send_at')[:1]

        response = {}
        for sent in q:
            sent_message = {}
            sent_message['recipient'] = sent.recipient.username
            print sent.recipient.username
            sent_message['body'] = sent.body
            response.update({'sent': sent_message})

        # Make json object
        json = simplejson.dumps(response)

        # Send answer to client side
        return HttpResponse(json, mimetype='application/json')
    else:
        # No POST request, redirecting
        return HttpResponseRedirect('/messenger/')
else:
    # No AJAX request, redirecting
    return HttpResponseRedirect('/messenger/')

让我们注意行“print sent.recipient.username”。此行始终打印第一个邮件收件人名称。

我一直在阅读有关此问题的stackoverflow的一些线程,但手动处理事务我没有取得任何成功。甚至在查询之前创建“Message.objects.update()”它也不起作用。

有什么建议吗?不明白它是如何发生的,这是非常烦人的。

如果您需要更多信息,例如型号代码或其他信息,请告诉我。

谢谢!

1 个答案:

答案 0 :(得分:2)

您的查询是按“send_at”排序结果,这可能会为您提供发送的第一条消息。如果你想要最后一个,你需要在“-send_at”上订购,例如

q = Message.objects.filter(sender=request.user).order_by('-send_at')[:1]