两天来,我一直在 Django 项目中遇到交易问题。我正在开发一个信使系统,当我向某个用户发送消息时,发送的消息正确显示在发件箱 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()”也不起作用。
有什么建议吗?不明白它是如何发生的,这很烦人。
如果您需要更多信息,例如型号代码或其他信息,请告诉我。
谢谢!