uni-app的H5版本下载跨域问题

前端能正常访问图片,但无法下载
在这里插入图片描述

因为路径不经过业务代码,所以需要在nginx配置跨域
uni-app的H5版本下载跨域问题_第1张图片

代码:

add_header Access-Control-Allow-Origin *;
add_header Access-Control-Allow-Methods 'GET, POST, OPTIONS';
add_header Access-Control-Allow-Headers 'DNT,X-Mx-ReqToken,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization';
add_header  Access-Control-Expose-Headers 'Content-Disposition';

你可能感兴趣的:(计算机基础知识,uni-app)