下载时未连接或断开连接时如何处理img src-Nativescript

时间:2019-02-08 11:21:47

标签: nativescript nativescript-angular

Assalamualaikum,

大家好。我在我的本机脚本角度应用程序中显示图像时遇到问题。 我确实显示了来自Firebase存储的downloadURL的图像。但是如果没有连接,我会报错。

这是我在daftar-toko.component.ts中的代码

<CardView class="cardStyle" margin="10" elevation="40" radius="1">
    <GridLayout rows="10,30,30,250, auto, auto,10" columns="10,40, *, 30,10">
        <Image [src]="toko.store.photo !=== ''? toko.store.photo : 'res://menu'" stretch="aspectFit" colSpan="3" col="1"
            row="3"></Image>
        <Label horizontalAlignment="left" [text]="toko.store.storeName" colSpan="3" row="4" textWrap="true" col="1"></Label>
        <Label horizontalAlignment="left" [text]="toko.store.noTelp" textWrap="true" col="1" row="5" colSpan="3"></Label>
    </GridLayout>
</CardView>

variabel toko.store.photo包含来自Firebase存储的downloadURL图像。

,我得到了这个错误。 Error in downloadBitmap - java.net.UnknownHostException: Unable to resolve host "firebasestorage.googleapis.com": No address associated with hostname

有什么更好的方法可以在Nativescript Angular中处理此已连接和已断开的下载映像?

0 个答案:

没有答案