2015-04-02 108 views
0

我剛剛編譯了第一次在Phonegap Build上創建我的Ionic應用程序,然後我在Android設備上安裝了應用程序:Samsung Galaxy SII i9100和Android 4.0.3。與Phonegap編譯離子應用程序時的問題構建:黑屏

,但我得到一個黑色的屏幕:

<ion-nav-view></ion-nav-view>是空的。

我把config.xml文件放在www文件夾中。

該應用程序在我的桌面瀏覽器中運行良好。

你能幫我弄清楚嗎?

感謝

+0

當你離開你的應用程序然後在計算機的瀏覽器上打開它時會發生什麼? – Keval 2015-04-02 11:56:10

+0

@Keval是的,它在我的瀏覽器中打開。 – Louis 2015-04-02 12:25:28

+1

您可以使用adb並在此提供調試日誌嗎?首先需要通過USB將設備連接到PC。該命令將幫助您濾除科爾多瓦的錯誤。 'adb logcat CordovaLog:D *:S)' – Keval 2015-04-02 12:48:30

回答

0

Before Cordova 2.3.0, the Connection object existed at: navigator.network.connection.

To match the spec, this was changed to navigator.connection in 2.3.0.

navigator.network.connection still exists, but is now deprecated and will be removed in a future release.

相反的navigator.network.connection.type,它應該是navigator.connection.type

所以,改變

var networkState = navigator.network.connection.type; 

var networkState = navigator.connection.type; 

希望這可以幫助。如果不是,請編輯您的問題並重新發布您的整個日誌,如果這不是完整的日誌。