curl访问https接口,点击图片下载
curl
访问https
接口
|
|
图片点击直接下载
1.后端返回加上header
头:
header('Content-type: image/png')
header("Content-Disposition: attachment; filename='xxxx.png'")
2.前端:a标签属性加上download
属性
eg
:<a href="large.jpg" download>
下载</a>
curl
访问https
接口
|
|
1.后端返回加上header
头:
header('Content-type: image/png')
header("Content-Disposition: attachment; filename='xxxx.png'")
2.前端:a标签属性加上download
属性
eg
:<a href="large.jpg" download>
下载</a>