离子框架远程图像未在Android设备上加载< 4.4

时间:2015-09-28 04:08:29

标签: android angularjs cordova ionic-framework android-4.3-jelly-bean

嗨,这个问题与旧版Android手机上的Ionic框架有关< 4.4 它仅适用于现有的本地图像,但不显示动态远程图像(例如src ='http://server/xxxx.png')

然而,这适用于 android version => 4.4

我也尝试过cordova-plugin-whitelist,但它无法正常工作。 PLZ如果有其他解决方案指南?

1 个答案:

答案 0 :(得分:0)

问题解决了:External images in the Ionic default tab template won’t load in the emulator and on the device

使用插件cordova-plugin-whitelist可以在Android和iOS上加载外部图像。

以下是如何安装它:

ionic plugin add cordova-plugin-whitelist

对于iOS,它会将以下条目添加到您的plist中。

<key>NSAppTransportSecurity</key>
<dict>
    <key>NSAllowsArbitraryLoads</key>
    <true/>
</dict>