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 シェルを使用して「try」ブロック内の最初の 3 行を実行したところ、これは正常に機能し、正しい「facebookid」が出力されました。残念ながら、私のブラウザでは動作しません。助言がありますか?