在phonegap 上运行的jquery mobile loadPage 失败,并出现加载页面错误
我正在用 ics 在 Nexus 上测试这个 冯加普版本1.4 jqm 版本 1.0.1
我尝试遵循这些准则,
1) 在本地 ip http://192.168 运行的服务器应用程序中添加了 Access-Control-Allow-Origin
.1.132/orderpage,尝试使用 html 和 json 响应
2)可能不需要这个,但我仍然将 $.support.cors
和 $.mobile.allowCrossDomainPages
设置为 true;
3) phonegap.xml
原点设置为 *
4)还放了一个 super.setIntegerProperty("loadUrlTimeoutValue", 60000);
这在浏览器上工作正常,但无论如何我在phonegap上加载页面时总是出错! 我在phonegap应用程序中遗漏了一些东西吗?加载本地文件工作正常 $.mobile.loadPage('order.html')
但
$.mobile.loadPage( "http://192.168.1.132/orderpage", { showLoadMsg: true } );
失败并出现 加载页面错误
我尝试构建的应用程序完全依赖于服务器端内容,我如何使用 ajax 调用或 loadpage() 安全地加载外部内容
,以及如何调试以检查phonegap是否向网络发出请求?
任何建议都将不胜感激。
谢谢你,
im testing this on nexus s with ics
phongap version 1.4
jqm version 1.0.1
i tried following these guidelines,
1) added Access-Control-Allow-Origin
in server app running at local ip http://192.168.1.132/orderpage, tried with both html and json reponses
2) may be this not needed but still i've set $.support.cors
and $.mobile.allowCrossDomainPages
to true;
3) phonegap.xml
origin is set to *
4) also put a super.setIntegerProperty("loadUrlTimeoutValue", 60000);
this works fine on browser but i keep getting error loading page on phonegap no matter what!
am i missing something in phonegap app? loading local file works fine $.mobile.loadPage('order.html')
but
$.mobile.loadPage( "http://192.168.1.132/orderpage", { showLoadMsg: true } );
fails with error loading page
the app im trying to build is totally depended on server side content, how can i safely load external content with ajax calls or loadpage()
and how to debug to check if phonegap is even making the request to network?
any suggestion is greatly appreciated.
thank you,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现我需要添加
到我的 AndroidManifest.xml
HTH
I found I need to add
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
To my AndroidManifest.xml
HTH