大家都是怎么通过a 标签下载文件的,download 兼容性有问题,求指导
https://github.com/rndme/down...
服务端响应的内容, content-type 这个头不是什么 text/* ,或者你明确设置成 application/octet-stream 浏览器就会作下载处理了。
content-type
text/*
application/octet-stream
window.location.href = 'url' 这个方便多了
iframe标签,点击下载时设置src属性和display:block
window.open(url);
https://github.com/rndme/down...