如何向用户提供JSON文件? 目前我有一个JSON对象,我希望用户下载。
我试过了:
res = HttpResponse(json_data, content_type='application/json')
res['Content_disposition'] = 'attachment; filename=result.json'
但它仍然在浏览器中提供json,而不是让用户下载它。
答案 0 :(得分:0)
取自官方docs:
response = HttpResponse(json_data, content_type='application/json')
response['Content-Disposition'] = 'attachment; filename="result.json"'