我们说我有一个包含用户的JSON对象'配置文件包括来自Web API的firstname,lastname,...和profileUrl。我已经使用Sqlite保存了文本数据,现在我想将这些图像保存在本机存储中,并将文件路径放入sqlite数据库,替换profileUrl。
答案 0 :(得分:2)
您可以使用cordova-plugin-file-transfer
。甚至还有一个Ionic Native包装器:https://ionicframework.com/docs/native/transfer/
示例:
download() {
const url = 'http://www.example.com/file.pdf';
fileTransfer.download(url, this.file.dataDirectory + 'file.pdf').then((entry) => {
console.log('download complete: ' + entry.toURL());
}, (error) => {
// handle error
});
}