有谁知道在执行 HttpResponse 时如何返回列表对象。
我努力了
HttpResponse(['a'.'b'])
但这显然行不通。
我也试过以下
return HttpResponse(Context(['a','b']),mimetype='text/plain')
但这会返回一些我不想要的额外东西
['a', 'b']{'False': False, 'None': None, 'True': True}
我只是想让它回来
['a', 'b']
谢谢