html5 plus 图片下载保存到手机相册
html5plus 接口文档:http://www.html5plus.org/doc/zh_cn/webview.htmlvue 集成html5plus方法:https://blog.csdn.net/weixin_38641550/article/details/85235297vue集成plus demo :https://github.com/Shaxin742/vue-weba...
·
html5plus 接口文档:http://www.html5plus.org/doc/zh_cn/webview.html
vue 集成html5plus方法:https://blog.csdn.net/weixin_38641550/article/details/85235297
vue集成plus demo : https://github.com/Shaxin742/vue-webapp-demo
这个是基于html5plus的
$(".download").click(function () {
var self = plus.webview.currentWebview();
console.log(self.fileUrl)
plus.nativeUI.showWaiting('加载中...')
var dtask = plus.downloader.createDownload(self.fileUrl, {}, function (d, status) {
// 下载完成
if (status == 200) {
// mui.toast("下载成功,文件保存在"+d.filename)
plus.gallery.save(d.filename, function () {//保存到相册方法
plus.nativeUI.closeWaiting()
mui.toast('已保存到手机相册');
}, function () {
plus.nativeUI.closeWaiting()
mui.toast('保存失败,请重试!');
});
} else {
mui.toast("下载失败")
}
});
dtask.start();
})
更多推荐
已为社区贡献6条内容
所有评论(0)