我可以在命令行中打印 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?