在我的 Django 视图中,我试图从我的数据库中检索结果,然后使用以下代码将它们传递给我的模板:
f = request.GET.get('f')
try:
fb_friends_found= UserProfile.objects.filter(facebookid__in=f).values('facebookid')
i = fb_friends_found[0] #To get the dictionary inside of the list
results = i['facebookid'] #To retrieve the value for the 'facebookid' key
variables = RequestContext (request, {'results': results })
return render_to_response('findfriends.html', variables)
我使用 manage.py shell 在“try”块中执行了前三行,这很好,打印了正确的“facebookid”。不幸的是,我无法让它在我的浏览器中工作。有什么建议么?