在带有外部URL的iOS上使用PhoneGap / Cordova
我想我的phonegap / cordova应用程序加载外部页面,没有本地。
I want my phonegap/cordova app to load an external page and nothing local.
现在我这样做,但我的插件(javascript)是从本地index.html调用的。
Now that i do that , however my plugins (javascript) dont work because they are called from the local index.html.
在这种情况下我该怎么办?我应该把插件放在我的外部URL,并将它们加载到外部index.html上?我也应该加载那里cordova-2.5.0.js?
What do i do in this case? I should put the plugins on my external URL and load them on the external index.html? Also i should also load there the cordova-2.5.0.js ?
如果这是唯一的方法,如果我想加载一个外部页面,
And if this is the only way , what happens if i want to load an external page that i dont own the server , but i would like to have push notifications enabled?
我如何启用这些插件?
d0nparalias ,
查看此项目: https://dl.dropbox.com/u/930742/so/CordovaBrowserSO.zip
您可以看到没有 index.html
或
文件夹。
As you can see there is no index.html
or www/
folder inside.
所有文件已上传到服务器,应用程序将根据需要下载它们。
All files were uploaded to the server and app will download them as needed.
通过执行从第1页的步骤。从 http://stackoverflow.com/a/15319156/753878 答案。
I've accomplished it by doing steps from p.1. from http://stackoverflow.com/a/15319156/753878 answer.
在服务器我有所有文件,您可以看到在使用模板Cordova项目创建的基本的 www /
文件夹:
At the server I have all files that you can see in basic www/
folder created with template Cordova project:
所有插件&
如果您选择 config,您可以直接在
,您将看到 index.html
.xml < content src =http://dymv.comeze.com/www/index。 html/>
If you check config.xml
from the archive above you'll see<content src="http://dymv.comeze.com/www/index.html" />
启动时的应用程序会说:
And the app on launch will say:
希望它是您想要访问的内容。
如果 -
Hope it's what you want to reach.
If it's not — please provide more info about result you want to achieve.
BR。
Eugene
BR.
Eugene