5+ API,图片下载并保存文件到系统相册中

在uniapp内使用5+ API,完成图片下载并保存到相册

down(){
	var dtask = plus.downloader.createDownload("http://www.qc888.info/uploads/share/QJESUK.png", {}, function(d, status){
		if(status == 200){ 
			//下载完成:d.filename,保存文件到系统相册中
			plus.gallery.save( d.filename, function () {
				uni.showToast({
					icon:'none',
					mask:true,
					title: '保存图片到相册成功',
				});
			});
		} else {
			 console.log("失败: " + status); 
		}  
	});
	dtask.start(); //开始下载
},

API地址:Gallery模块管理系统相册Downloader模块管理网络文件下载任务

猜你喜欢

转载自blog.csdn.net/qq_40745143/article/details/107491609
今日推荐