gpt4 book ai didi

sqlite - Ionic2:从 URL 获取图像并保存到 native 存储

转载 作者:行者123 更新时间:2023-12-03 14:56:17 25 4
gpt4 key购买 nike

假设我有一个 JSON 对象,其中包含来自 Web API 的用户个人资料,包括名字、姓氏、...和 ​​profileUrl。我已经使用 Sqlite 保存了文本数据,现在我想将这些图像保存在 native 存储中,并将文件路径放入 sqlite 数据库中,替换 profileUrl。

最佳答案

您可以使用 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
});
}

关于sqlite - Ionic2:从 URL 获取图像并保存到 native 存储,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44784146/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com