// app音频下载
audioDownload_APP(){
let dtask = plus.downloader.createDownload( this.audio_src, {
filename: "file://storage/emulated/0/uniapp/"+this.new_fileName+".mp3",
}, function(d, status) {
if (status == 200) {
let fileSaveUrl = plus.io.convertLocalFileSystemURL(d.filename);
console.log(fileSaveUrl)
plus.runtime.openFile(d.filename);
uni.showToast({
icon:"none",
title:fileSaveUrl,
duration:9000
})
this.downloadPopuShow=false;
} else {
//下载失败
plus.downloader.clear(); //清除下载任务
uni.showToast({
icon:"none",
title:"下载失败"
})
}
})
dtask.start();
},
同一个代码旧版本打包正常,新版本编辑器打包不能使用。
SDDDSA
现在最高版本不是4.08.2024040123 , 4.11版本好久上线
2024-04-30 16:17