2016-02-06 182 views
0

我對插件cordova-plugin-inappbrowser進行了一個簡單的測試,但它不起作用,請幫助。 我做了什麼: 1. PhoneGap的創建PhoneGap的默認
2 PhoneGap的插件添加科爾多瓦 - 插件 - inappbrowser --save
3.在裏面的「應用程序」的div底部添加此行到www/index.html的:Phonegap inappbrowser not working

<a href="var ref = cordova.InAppBrowser.open('http://apache.org', '_blank', 'location=yes');"><h1>Test</h1></a> 

中的index.html是像以下:

<html> 
<head> 
    <meta charset="utf-8" /> 
    <meta name="format-detection" content="telephone=no" /> 
    <meta name="msapplication-tap-highlight" content="no" /> 
    <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 --> 
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" /> 
    <link rel="stylesheet" type="text/css" href="css/index.css" /> 
    <title>Hello World</title> 
</head> 
<body> 
    <div class="app"> 
     <h1>PhoneGap</h1> 
     <div id="deviceready" class="blink"> 
      <p class="event listening">Connecting to Device</p> 
      <p class="event received">Device is Ready</p> 
     </div> 
    <a href="var ref = cordova.InAppBrowser.open('http://apache.org', '_blank', 'location=yes');"><h1>Test</h1></a> 
    </div> 
    <script type="text/javascript" src="cordova.js"></script> 
    <script type="text/javascript" src="js/index.js"></script> 
    <script type="text/javascript"> 
     app.initialize(); 
    </script> 
</body> 

  • 的PhoneGap服務
  • 打開phonegap開發應用程序(在iOS 9.2.1),連接到phonegap服務器,然後點擊測試鏈接。什麼都沒發生。
  • 我的Phonegap版本是5.4.1。提前致謝。

    回答

    0

    我認爲你應該加上:

    <access origin="http://apache.org" subdomains="true" /> 
    
    在config.xml

    也許這也是nessessary添加

    <feature name="InAppBrowser"> 
        <param name="ios-package" value="CDVInAppBrowser" /> 
    </feature> 
    

    如需進一步信息,請訪問: https://cordova.apache.org/docs/en/3.0.0/cordova/inappbrowser/inappbrowser.html

    對於在Android上使用此插件,您還應該添加cordova-plugin-whitelist插件:

    https://github.com/apache/cordova-plugin-whitelist

    相關問題