const dtask = plus.downloader.createDownload(ossUrl, {}, (d, status) => {
if (status === 200) {
plus.io.resolveLocalFileSystemURL(d.filename, (entry) => {
entry.moveTo('/storage/8839-DBE9/我的文档', paths[paths.length - 1], function (entry) {
that.push(serverPath, entry.fullPath, width, mode);
resolve(entry.fullPath);
}, function (e) {
alert(e.message);
});
});
} else {
resolve(serverPath);//放弃下载任务 直接显示原图片
}
});
用H5+做电视应用,电视的内存不够大,图片放不下,想把图片放在U盘。
这段代码报移动失败。
有什么解决办法没
0 个回复