2

NPM から phonegap の最新バージョンを入手してインストールしました。新しいプロジェクトを作成し、PhoneGap のドキュメントに従って InAppBrowser プラグインを追加しました. 次に、webapp から JavaScript 呼び出しを行いますが、以下でコーディングしたアラートは表示されず、Xcode でプラグイン用に設定したブレークポイントでも表示されません。

JS のコードは次のとおりです。

var pdfViewer = {
    loadPdf: function(record, successCallback, errorCallback) {
        var filename = record.get('building') + "-" + record.get('floor') + ".pdf";
        var url = People.app.srvcUrl + Global.floorPlanUri + filename + "?access_token=" + People.app.bearerToken.access_token;
        if (Ext.os.is.iOS) {
        //    cordova.exec(successCallback, errorCallback, "PDFViewer", "loadRemotePdf", [url, filename]);


            var ref = window.open(url, '_blank', 'location=yes');
            ref.addEventListener('loadstart', function() { alert("You made it!"); });
        } else {
            window.open(url, '_system', 'location=yes');
        }
    }
};

何が起こるかというと、URL が起動されて、既存のアプリの上に PDF が表示され、アラートも場所/閉じるボタンもありません。InAppBrowser が使用されていない理由はありますか? 閉じるボタンのあるウィンドウに表示する必要があります。

アプリを実行したときに Xcode に表示される出力は次のとおりです。

2013-10-23 09:39:02.380 mobile-xxx-ios[3302:60b] Multi-tasking -> Device: YES, App: YES
2013-10-23 09:39:02.426 mobile-xxx-ios[3302:60b] Unlimited access to network resources
2013-10-23 09:39:02.564 mobile-xxx-ios[3302:60b] [CDVTimer][phonedialer] 0.477016ms
2013-10-23 09:39:02.567 mobile-xxx-ios[3302:60b] [CDVTimer][sms] 0.230014ms
2013-10-23 09:39:02.569 mobile-xxx-ios[3302:60b] [CDVTimer][emailcomposer] 0.252008ms
2013-10-23 09:39:02.571 mobile-xxx-ios[3302:60b] [CDVTimer][TotalPluginStartup] 7.416010ms
2013-10-23 09:39:02.957 mobile-xxx-ios[3302:60b] Resetting plugins due to page load.
2013-10-23 09:39:05.789 mobile-xxx-ios[3302:60b] Finished load of: file:///var/mobile/Applications/5916FB20-FDEC-40A7-AE77-9EF14AF30585/mobile-xxx-ios.app/www/index.html
2013-10-23 09:39:18.168 mobile-xxx-ios[3302:60b] Resetting plugins due to page load.
2013-10-23 09:39:18.680 mobile-xxx-ios[3302:60b] Finished load of: https://pdfs.xxx.com/noauth/plans/x-1.pdf
FAILED to create agar for HelveticaLTMM.
FAILED to create agar for TimesLTMM.

ここに私のconfig.xmlがあります:

<widget xmlns     = "http://www.w3.org/ns/widgets"
        id        = "io.cordova.helloCordova"
        version   = "2.0.0">
    <name>Mobile App</name>

    <description>
        Mobile Phonegap Application
    </description>

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

    <content src="index.html" />

    <!-- Preferences for iOS -->
    <preference name="KeyboardDisplayRequiresUserAction" value="true" />
    <preference name="SuppressesIncrementalRendering" value="false" />
    <preference name="UIWebViewBounce" value="true" />
    <preference name="TopActivityIndicator" value="gray" />
    <preference name="EnableLocation" value="false" />
    <preference name="EnableViewportScale" value="false" />
    <preference name="AutoHideSplashScreen" value="true" />
    <preference name="ShowSplashScreenSpinner" value="true" />
    <preference name="MediaPlaybackRequiresUserAction" value="false" />
    <preference name="AllowInlineMediaPlayback" value="false" />
    <preference name="OpenAllWhitelistURLsInWebView" value="false" />
    <preference name="BackupWebStorage" value="cloud" />
    <preference name="permissions" value="none" />
    <preference name="orientation" value="default" />
    <preference name="target-device" value="universal" />
    <preference name="fullscreen" value="true" />
    <preference name="webviewbounce" value="true" />
    <preference name="prerendered-icon" value="true" />
    <preference name="stay-in-webview" value="false" />
    <preference name="ios-statusbarstyle" value="black-opaque" />
    <preference name="detect-data-types" value="true" />
    <preference name="exit-on-suspend" value="false" />
    <preference name="show-splash-screen-spinner" value="true" />
    <preference name="auto-hide-splash-screen" value="true" />
    <preference name="disable-cursor" value="false" />
    <preference name="android-minSdkVersion" value="7" />
    <preference name="android-installLocation" value="auto" />

    <feature name="SSLSelfCertOverride">
        <param name="ios-package" value="SSLSelfCertOverride" />
    </feature>
    <feature name="LocalStorage">
        <param name="ios-package" value="CDVLocalStorage"/>
    </feature>
    <feature name="PhoneDialer">
        <param name="ios-package" value="PhoneDialer"/>
        <param name="onload" value="true" />
    </feature>
    <feature name="Sms">
        <param name="ios-package" value="Sms"/>
        <param name="onload" value="true" />
    </feature>
    <feature name="EmailComposer">
        <param name="ios-package" value="EmailComposer"/>
        <param name="onload" value="true" />
    </feature>
    <feature name="InAppBrowser">
        <param name="ios-package" value="CDVInAppBrowser" />
    </feature>
    <feature name="Geolocation">
        <param name="ios-package" value="CDVLocation" />
    </feature>
    <feature name="PackageInfo">
        <param name="ios-package" value="PackageInfo" />
    </feature>
    <feature name="PDFViewer">
        <param name="ios-package" value="PDFViewer" />
    </feature>
</widget>
4

3 に答える 3

4

以下を確認してください。

ステップ1

「platforms/ios/www/plugins/」に「org.apache.cordova.inappbrowser」ディレクトリがありますか? 答えが「いいえ」の場合、正常に追加されていません。

解決策: dir "org.apache.cordova.inappbrowser/www/" を作成し、"InAppBrowser.js" を入れます。これは、PhoneGap プロジェクトのルート " yourproject /plugins/org.apache.cordova.inappbrowser/www/" にあります。その後、ステップ 2 に進みます。

ステップ2

「platforms/ios/www/cordova_plugins.js」を開きます。「module.exports」に、次を追加します。

    {
        "file": "plugins/org.apache.cordova.inappbrowser/www/InAppBrowser.js",
        "id": "org.apache.cordova.inappbrowser.InAppBrowser",
        "clobbers": [
            "window.open"
        ]
    }

「module.exports.metadata」に、次を追加します。

    "org.apache.cordova.inappbrowser": "0.2.5"

保存します。「0.2.5」はプラグインのバージョンで、plugin.xml にあります。(この数字は関係ないようです。)

次にそれを実行し、インスペクターを開き、「InAppBrowser.js」が head タグに正常に追加されているかどうかを確認します。

注:「cordova_plugins.js」を変更せずに「InAppBrowser.js」を head タグに手動で追加しても機能しません。1 の答えが「はい」の場合は、手順 2 に直接進みます。

うまくいけば、これで問題が解決します。

于 2014-01-05T22:14:02.983 に答える
0

config.xml に次のものが含まれていることを確認します。

  <?xml version='1.0' encoding='utf-8'?>
<widget id="com.phonegap.helloworld" version="1.0.0" xmlns="http://www.w3.org/ns/widgets" xmlns:gap="http://phonegap.com/ns/1.0">
    <name>HelloWorld</name>
    <description>
        Hello World sample application that responds to the deviceready event.
    </description>
    <author email="support@phonegap.com" href="http://phonegap.com">
        PhoneGap Team
    </author>
    <feature name="http://api.phonegap.com/1.0/device" />
    <preference name="phonegap-version" value="3.1.0" />
    <preference name="permissions" value="none" />
    <preference name="orientation" value="default" />
    <preference name="target-device" value="universal" />
    <preference name="fullscreen" value="true" />
    <preference name="webviewbounce" value="true" />
    <preference name="prerendered-icon" value="true" />
    <preference name="stay-in-webview" value="false" />
    <preference name="ios-statusbarstyle" value="black-opaque" />
    <preference name="detect-data-types" value="true" />
    <preference name="exit-on-suspend" value="false" />
    <preference name="show-splash-screen-spinner" value="true" />
    <preference name="auto-hide-splash-screen" value="true" />
    <preference name="disable-cursor" value="false" />
    <preference name="android-minSdkVersion" value="7" />
    <preference name="android-installLocation" value="auto" />
    <icon src="icon.png" />
    <icon gap:density="ldpi" gap:platform="android" src="res/icon/android/icon-36-ldpi.png" />
    <icon gap:density="mdpi" gap:platform="android" src="res/icon/android/icon-48-mdpi.png" />
    <icon gap:density="hdpi" gap:platform="android" src="res/icon/android/icon-72-hdpi.png" />
    <icon gap:density="xhdpi" gap:platform="android" src="res/icon/android/icon-96-xhdpi.png" />
    <icon gap:platform="blackberry" src="res/icon/blackberry/icon-80.png" />
    <icon gap:platform="blackberry" gap:state="hover" src="res/icon/blackberry/icon-80.png" />
    <icon gap:platform="ios" height="57" src="res/icon/ios/icon-57.png" width="57" />
    <icon gap:platform="ios" height="72" src="res/icon/ios/icon-72.png" width="72" />
    <icon gap:platform="ios" height="114" src="res/icon/ios/icon-57-2x.png" width="114" />
    <icon gap:platform="ios" height="144" src="res/icon/ios/icon-72-2x.png" width="144" />
    <icon gap:platform="webos" src="res/icon/webos/icon-64.png" />
    <icon gap:platform="winphone" src="res/icon/windows-phone/icon-48.png" />
    <icon gap:platform="winphone" gap:role="background" src="res/icon/windows-phone/icon-173.png" />
    <gap:splash gap:density="ldpi" gap:platform="android" src="res/screen/android/screen-ldpi-portrait.png" />
    <gap:splash gap:density="mdpi" gap:platform="android" src="res/screen/android/screen-mdpi-portrait.png" />
    <gap:splash gap:density="hdpi" gap:platform="android" src="res/screen/android/screen-hdpi-portrait.png" />
    <gap:splash gap:density="xhdpi" gap:platform="android" src="res/screen/android/screen-xhdpi-portrait.png" />
    <gap:splash gap:platform="blackberry" src="res/screen/blackberry/screen-225.png" />
    <gap:splash gap:platform="ios" height="480" src="res/screen/ios/screen-iphone-portrait.png" width="320" />
    <gap:splash gap:platform="ios" height="960" src="res/screen/ios/screen-iphone-portrait-2x.png" width="640" />
    <gap:splash gap:platform="ios" height="1024" src="res/screen/ios/screen-ipad-portrait.png" width="768" />
    <gap:splash gap:platform="ios" height="768" src="res/screen/ios/screen-ipad-landscape.png" width="1024" />
    <gap:splash gap:platform="winphone" src="res/screen/windows-phone/screen-portrait.jpg" />
    <gap:plugin name="org.apache.cordova.geolocation" />
    <gap:plugin name="org.apache.cordova.network-information" version="0.2.3" />
    <gap:plugin name="org.apache.cordova.inappbrowser" version="0.1.0" />
    <access origin="http://127.0.0.1*" />
    <access origin="*" />
    <content src="index.html" />
</widget>
于 2013-10-26T05:49:02.647 に答える
0

Cordova CLI コマンドのみを使用してプロジェクトを作成し、プラグインを追加することで、この問題を解決しました。すべてを正しいディレクトリに移動するには、ビルド コマンドを使用する必要があるようです。cordova buildそして、正しい場所に適切なプラグイン ファイルを使用して iOS および Android 用にビルドする and を発行するだけです。

また、生成された js/index.js を変更して、Sencha Touch アプリを次のように呼び出します。

var device = false;
var app = {
    // Application Constructor
    initialize: function() {
        this.bindEvents();
    },
    // Bind Event Listeners
    //
    // Bind any events that are required on startup. Common events are:
    // 'load', 'deviceready', 'offline', and 'online'.
    bindEvents: function() {
        document.addEventListener('deviceready', this.onDeviceReady, false);
    },
    // deviceready Event Handler
    //
    // The scope of 'this' is the event. In order to call the 'receivedEvent'
    // function, we must explicity call 'app.receivedEvent(...);'
    onDeviceReady: function() {
        app.receivedEvent('deviceready');
    },
    // Update DOM on a Received Event
    receivedEvent: function(id) {
        try {
            device = true;
            People.app.mainLaunch();
        }
        catch(e) {
            alert("Error: " + e);
        }

        console.log('Received Event: ' + id);
    }
};

次に、Sencha Touch アプリで、次のように、PhoneGap が起動する前に初期化されている ST アプリ間の競合状態を防ぐために、起動方法を変更しました。

launch: function() {
    this.launched = true;
    this.mainLaunch();
},
mainLaunch: function() {
    try {
        if (this.launched && device) {
            Ext.Viewport.add({xtype:'myApp');
        }
    }
    catch(e) {
        alert(e);
    }
},
于 2013-11-14T00:09:12.560 に答える