使用Meteor与Phonegap Build

时间:2014-01-10 07:03:00

标签: cordova meteor phonegap-build

我已经使用指向我的Meteor URL的phonegapbuild服务成功构建了一个android apk,我尝试了两种方法,它们都有效:

- Setting 'content in config.xml (<content src="http://MyIP:3000/" />)
- Using window.location = "http://MyIP:3000/"  in index.html

所以现在我的Meteor应用程序在移动设备上工作正常,但我无法理解如何访问Phonegap api ie。我不知道如何包含phonegap位。我已经看到了一些使用AppCache的提法,但我不知道这与问题有什么关系。

1 个答案:

答案 0 :(得分:1)

必须从index.html调用Cordova API,一旦执行window.location = WEB_URL,它将位于不同的域中,您将无法访问在webview中运行的远程网站的phonegap设备功能。