我是否需要使用 JSON 将数据从外部 PHP 服务器传输到 Phonegap iPhone 应用程序?
我是否需要使用 JSON 将数据从外部 PHP 服务器传输到 Phonegap iPhone 应用程序?或者我可以使用 $.get 函数从 PHP 文件中提取数据吗?
感谢您提前的帮助,
Do I need to use JSON to transfer data from external PHP server to Phonegap iPhone app? Or can I use a $.get function to pull data from a PHP file?
Thank you for your help in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
不,您不需要,您可以使用除二进制之外的任何格式,因为它以
jqXHR
中可用的文本数据形式返回,它是XMLHttpRequest
的超集,因此您可以检索其response.responseText
属性http://api.jquery.com/jQuery .get/
No you don't, you can use any format you wish except for binary since it comes back as textual data available in
jqXHR
which is a superset ofXMLHttpRequest
, so you can retrieve itsresponse.responseText
propertyhttp://api.jquery.com/jQuery.get/
要记住的一点是 PHP 不在您的应用程序中,而是在您的服务器上。本质上,你调用网络服务来获取一些信息,苹果对此没有任何限制。我创建并发布了一个混合应用程序,它从我的网络服务中提取数据并将其显示在应用程序中。没问题。
您可以使用任何您想要的格式,XML 或 JSON 是最流行的
The point to remember is that PHP is not in your app, it's on your server. You're calling a webservice to get some info, in essence, and no Apple does not put any restriction on this. I've created and released a hybrid app that pulls data from my webservice and displays it in app. No problems.
And you can use any format you want, XML or JSON being most popular
您可以使用 $.get 检索 php 文件生成的 json。
我相信 $.get 假设一个 json 响应。
You can use $.get to retrieve json generated by your php file.
I believe $.get assumes a json response though.