Android 在 4.0.0 後有新增安全性,防止 app 存取外部開發者沒有允許的網址 故若你的 app 需要連外部網址,則需要將這些網址列入白名單 white-list (Cordova Whitelist) 在 Ionic 裡作法如下 1. 先在 shell 裡安裝 plugin $ ionic plugin add https://github.com/apache/cordova-plugin-whitelist.git 2. 在你的 Ionic 專案的 config.xml 裡加上 <allow-navigation href="*" /> "*" 代表所有網址都允許例如: <platform name="android"> ..... ..... <allow-navigation href="*" /> </platform> whitelist 設定的詳情請看 https://github.com/apache/cordova-plugin-whitelist#content-security-policy |
沒有留言:
張貼留言