使用 PhoneGap 与服务器通信的最佳方式是什么?
我想知道是否有人对使用 PhoneGap 从网络服务器发送和接收信息有任何建议。有这样做的标准方法吗?有什么最佳实践吗?我对应用程序开发还很陌生,任何建议都会有所帮助。
谢谢
I'm wondering if anyone has any advice regarding using PhoneGap to send and receive information from a web server. Is there a standard way of doing this? Any best practices? I'm pretty new to app development and any advice would be helpful.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我个人使用 jQuery ajax。 phonegap 和在手机上运行 js 的很棒之处在于,您不会遇到正常的 javascript 安全问题,例如跨域问题。
您需要记住的一件事是,为了访问外部服务器,您需要向外部主机中的 plist 添加一个新密钥
关键词: 网站
值:*
* 是一个包罗万象的内容,因此可以访问任何域。
至于ajax,将其视为正常的ajax请求:
祝你好运,快乐开发!
我的博客上有一些phonegap教程 -
http://www.drewdahlman.com/meusLabs/
I personally use jQuery ajax. The awesome thing about phonegap and running js on a phone is that you have no normal javascript security issues like crossdomain issues.
One thing you need to remember is that in order to reach outside servers you will need to add a new key to your plist in your external hosts
KEY: websites
VALUE: *
the * is a catch all so any domain can be accessed.
as for the ajax treat it like a normal ajax request:
good luck happy deving!
I've got a few phonegap tutorials on my blog -
http://www.drewdahlman.com/meusLabs/
使用您想要的任何 AJAX。
请记住在 config.xml 文件中允许您要通信的服务器!
config.xml 文件中有更多示例。
Use any AJAX you want.
Remember to allow the server you're going to communicate in your config.xml file!
There are more examples in the config.xml file.