cordova-plugin-whitelist 这个插件怎么用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cordova-plugin-whitelist 这个插件怎么用相关的知识,希望对你有一定的参考价值。
参考技术A 在实际的项目开发中,需要用到 cordova 的插件,进行各个不同平台的辅助开发,我们可以通过 plugins.cordova.io 对现有插件的搜索,以及安装。 插件的安装和使用,详细可以通过查阅 Cordova 的官网文档 The Command-Line Interface离子框架远程图像未在 android 设备 < 4.4 上加载
【中文标题】离子框架远程图像未在 android 设备 < 4.4 上加载【英文标题】:ionic framework remote image not loading on android device < 4.4 【发布时间】:2015-09-28 04:08:29 【问题描述】:您好,这个问题与旧 android 手机上的 Ionic 框架有关 http://server/xxxx.png')
但是,这适用于 android 版本 => 4.4。
我也尝试了 cordova-plugin-whitelist 但它不起作用。请指导是否有其他解决方案?
【问题讨论】:
你的cordova版本是什么? 使用最新的cordova 5.0.0 【参考方案1】:问题在这里解决: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>
【讨论】:
以上是关于cordova-plugin-whitelist 这个插件怎么用的主要内容,如果未能解决你的问题,请参考以下文章