基本上,我试图从 HTTP 触发的 azure 函数中获取 excel 作为响应
response = func.HttpResponse(data, mimetype='application/vnd.ms-excel')
response['Content-Disposition'] = 'attachment; filename="test.xlsx"'
return response
但没有 Content -Disposition 的标题
基本上,我试图从 HTTP 触发的 azure 函数中获取 excel 作为响应
response = func.HttpResponse(data, mimetype='application/vnd.ms-excel')
response['Content-Disposition'] = 'attachment; filename="test.xlsx"'
return response
但没有 Content -Disposition 的标题