我在我的应用程序中存储了大量图像,以便以后可以使用它们而无需再次下载它们。目前,我正在将它们转换为base64,然后将它们存储在设备的本地存储器中(因为我很难处理来自angular的不安全值)。
但I just read base64图像更大?存储和显示大量图像的最佳方式是什么(约50张图像,从150KB到2MB)?
答案 0 :(得分:1)
You can use the plugin cordova-plugin-file for saving file locally to your phone.
Like this
var url = url;
var targetPath = cordova.file.externalDataDirectory + NAME;
//alert(targetPath);
var trustHosts = true;
var options = {};
$cordovaFileTransfer.download(url, targetPath, options, trustHosts)