0

コマンド ラインで B ディクショナリの内容を出力できますが、HttpResponse(B) で B を渡すと、ディクショナリのキーのみが表示されます。辞書の内容をテンプレートに印刷したい。しかし、そうすることができません。どうすればこれを達成できますか?

ここに私のView.pyファイルがあります

def A(request):
    B = db_query()       # B is of type 'dict'
    print B              # prints the whole dictionary content with key and value pairs in the command line.
    return HttpResponse(B)       #only prints the key in the template. Why?
4

1 に答える 1