zoukankan      html  css  js  c++  java
  • ionic ios iframe 白屏

    之前碰到一个问题:

    在ios下边使用iframe出现白屏问题

    android下边正常

    原因是ios对app打开外部网页有限制需要取消限制

    解决方法

    1.确认添加whitelist 插件

    2.在config.xml中添加

    <plugin name="cordova-plugin-whitelist"      source="npm" spec="1.1.0" />
    <allow-navigation href="*" />
    <allow-intent href="*" />
    <access origin="*" />

    3.在index.html中添加如下代码

    <meta http-equiv="Content-Security-Policy" 
             content="default-src *; 
                      style-src * 'self' 'unsafe-inline' 'unsafe-eval'; 
                      script-src * 'self' 'unsafe-inline' 'unsafe-eval';">

    参考地址

    http://stackoverflow.com/questions/36318185/how-can-i-allow-a-cordova-6-1-app-to-embed-an-iframe-in-ios-from-a-website?answertab=active#tab-top

  • 相关阅读:
    css3线性渐变
    php的%s
    面向对象
    excel导入导出
    保存Excel
    保存word
    图片预览
    验证日期输入格式
    级联菜单
    中级前端知识点提要
  • 原文地址:https://www.cnblogs.com/happen-/p/6138712.html
Copyright © 2011-2022 走看看