大家好,我是你的好朋友思创斯。今天说一说uni-app h5点击下载图片[通俗易懂],希望您对编程的造诣更进一步.
downloadimg: function (){
const that = this;
// #ifdef h5
var $code_img = document.getelementbyid('code_img');
console.log($code_img.src)
// #endif
uni.downloadfile({
url: $code_img.src,
success: (res) => {
if (res.statuscode === 200) {
console.log(res.tempfilepath);
that.saveimg(res.tempfilepath)
}
}
});
},
saveimg: function(url){
var oa = document.createelement("a");
oa.download = '';// 设置下载的文件名,默认是'下载'
oa.href = url;
document.body.appendchild(oa);
oa.click();
oa.remove(); // 下载之后把创建的元素删除
},
文章由思创斯整理,转载请注明出处:https://ispacesoft.com/94029.html