我使用cordova-plugin-http插件与HTTP服务器通信 ionicframework docs
但是下载文件方法并不起作用。也许,没有设置本地文件路径,帮助我。
我的代码:
downLoad() {
this.http.downloadFile('http://example.com/files/files/image.jpg', {}, {}, 'image.jpg')
.then(data => {
console.log(data) ;
})
.catch(error => {
console.log(error) ;
});
}
错误存在于文件http://example.com/files/files/image.jpg
中现在还有另一个问题 - 如何在照片库中保存图像?