在django中向用户提供json文件

时间:2017-03-18 07:47:08

标签: json django

如何向用户提供JSON文件? 目前我有一个JSON对象,我希望用户下载。

我试过了:

res = HttpResponse(json_data, content_type='application/json')
res['Content_disposition'] = 'attachment; filename=result.json'

但它仍然在浏览器中提供json,而不是让用户下载它。

1 个答案:

答案 0 :(得分:0)

取自官方docs

response = HttpResponse(json_data, content_type='application/json')
response['Content-Disposition'] = 'attachment; filename="result.json"'