我拥有在Inappbrowser中打开PDF网址的代码。我正在Iphone中尝试这个。
cordova.InAppBrowser.open(aPdfURL,'_blank','location = no,EnableViewPortScale = yes');
它会打开PDF文件,但是当我尝试缩放时,它不起作用。
但是,如果我将其更改为_system而不是_blank,它将打开SAFARI系统浏览器并显示PDF网址,但是随后我在浏览器中看到了我不想要的网址。
请提出我该如何解决的建议。
答案 0 :(得分:0)
尝试更改index.html中的<meta>
标记
例如:
<meta http-equiv="Content-Security-Policy" content="default-src * 'self' 'unsafe-inline' 'unsafe-eval' data: gap: content:">
还要确保在Index.html
中包含相应的<Script>
标签
例如:
<!-- Cordova -->
<script src="cordova.js"></script>
<!-- Framework7 library -->
<script src="framework7/js/framework7.min.js"></script>
<!-- App routes -->
<script src="js/routes.js"></script>
<!-- Your custom app scripts -->
<script src="<custom lib>.js"></script>