2013-04-17 186 views

回答

1

索引文件不應該在服務器上。您需要在應用的資產文件夾中有一個index.html,並通過jquery ajax調用與服務器建立連接。 另外,還要確保您已導入科爾多瓦和PhoneGap的index.html中

3

javascript文件,因爲劇本沒有映射到庫/ cordova.xxx你不如果從外部主機執行科爾多瓦腳本訪問硬件資源一個Phonegap應用程序的jar。 但是你可以這樣解決:

在res/XML/config.xml中

<access origin="*" /> 
<content src="index.html" /> 
資產

/WWW/index.html的

<body> 
    <script type="text/javascript" src="cordova-x.x.x.js"></script> 
    <iframe name="framewrap" id="framewrap" 
     style="border:0;position: absolute; top: 0; left: 0;width: 100%;" 
     src="http://yourwebsite.pl"> 
    </iframe> 
    <script type="text/javascript"> 
     document.getElementById("framewrap").contentWindow.navigator = navigator; 
    </script> 
</body> 

finaly

,在攝像頭的配置,你如果你想要DATA_URL,必須將destinationType設置爲0,如果你想要FILE_URI則設置爲1,如果你想要NATIVE_URI則設置爲2。我想幫你