博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
cordova iOS blank iframe iphone iframe 白屏 ios iframe 白屏
阅读量:6697 次
发布时间:2019-06-25

本文共 772 字,大约阅读时间需要 2 分钟。

(1)解决方案

http://stackoverflow.com/questions/36572537/cordova-ios-blank-iframe/36587026

 

在 index.html中配置meta

<meta http-equiv="Content-Security-Policy" 

content="default-src *; frame-src *; style-src * 'self' 'unsafe-inline' 'unsafe-eval'; 
script-src * 'self' 'unsafe-inline' 'unsafe-eval';">

 

context-security-policy中详细请查看:

https://content-security-policy.com/

 

(2)在config.xml中配置

<access origin="*" subdomains="true" />

<allow-navigation href="*" />
<allow-intent href="http://*/*" />
<allow-intent href="https://*/*" />

 

以上就可以在 iphone 通过 iframe导入,但是别忘记,argularjs中的把url设置为可信源

$sce.trustAsResourceUrl(url)

 (3)cordova+ionic+argular  在android中

让滚动条仍然存在

但是隐藏,可使用下面的CSS

::-webkit-scrollbar, *::-webkit-scrollbar { display: none; }

转载于:https://www.cnblogs.com/fujinliang/p/6216457.html

你可能感兴趣的文章
Hive谓词解析过程分析
查看>>
程序员,软件测试知多少?
查看>>
通过rhel7的kvm虚拟机实现3节点Postgres-XL(包括gtm standby)
查看>>
Visual Studio Code 前端调试不完全指南
查看>>
慕课网_《Java实现对称加密》学习总结
查看>>
到底什么是API经济
查看>>
好雨云帮如何对接Git Server
查看>>
【Android】关于参数的传递问题
查看>>
API文档自动生成
查看>>
ES6:Set和Map
查看>>
一个 js 中值传递和引用传递的坑。
查看>>
Visual Studio 2017新版发布,极大提高开发效率丨附下载
查看>>
研究人员发现:基于文本的AI模型容易受到改述攻击
查看>>
你的GitHub,怎么和我用的不太一样?
查看>>
白山云科技 CTO 童剑:空降后,如何有技术又有艺术地破局?
查看>>
关于移动端 1px 像素问题
查看>>
node.js简单爬虫
查看>>
eBay宣布发布全新的购买和销售APIs
查看>>
Scala.js:将Scala编译为JavaScript的编译器
查看>>
Cling旨在提供一款高性能的C++ REPL
查看>>