0
我能夠在命令行中打印B字典的內容,但是當我在HttpResponse(B)中傳遞B時,它只顯示字典的鍵。我想要將字典的內容打印在模板上。但無法這樣做。我怎樣才能做到這一點?HttpResponse無法打印字典的內容
這裏是我的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?
謝謝。非常有用。 +1。 – PythonEnthusiast