我想将图像从 Web URL 保存到设备,有人可以帮忙吗?
我试过使用 imageSource 模块,但它只说来自本地设备的图像
问问题
1064 次
2 回答
3
const imageSourceModule = require("tns-core-modules/image-source");
const fileSystemModule = require("tns-core-modules/file-system");
imageSourceModule.fromUrl(webURL).then((res) => {
const folderDest = fileSystemModule.knownFolders.currentApp();
const pathDest = fileSystemModule.path.join(folderDest.path, "test.png");
const saved = res.saveToFile(pathDest, "png");
if (saved) {
console.log("Image saved successfully!");
this.image = imageSourceModule.fromFile(pathDest);
}
感谢@Narendra Mongiya 的第一个答案,这有助于从 url 获取图像
于 2018-10-19T00:04:51.447 回答
0
这就是您的代码应该是什么(我假设您的 webURL 返回 jpg/png 等)
const imageSource = require('image-source');
imageSource.fromUrl(webURL).then((res: any) => {
this.imageUrl = res;
}).catch(err => {
this.imageUrl = this.getIconSource('default_image');
});
并在 html 文件中
<Image [src]="imageUrl" loadMode="async"></Image>
如果 URL 返回空白,则为默认图像
public getIconSource(icon: string): string {
return isAndroid ? `res://${icon}` : 'res://images/' + icon;
}
于 2018-10-18T04:42:04.133 回答