将本地存储日期从 Phonegap 应用程序发送到远程服务器
我正在开发一个phonegap应用程序,该应用程序将提交到itunes商店,但在决定如何将本地存储中存储的数据发送到远程服务器时遇到困难。我想使用 json 来做到这一点,但从未这样做过。我的问题是:我想要使用 json 并在远程服务器上使用 php 文件是否正确,该文件将接受它作为 GET(或者 POST 更好),以及在通过 itunes 提交此文件以供审核时我应该注意哪些问题?
I am working on a phonegap app that will be submitted to the itunes store and am having trouble deciding how I should send data stored in localstorage to a remote server. I would like to use json to do this but have never done so. My questions are: am I right to want to use json and use a php file on the remote server that will accept it as GET (or is POST better) and what issues should I be aware of when submitting this for review through itunes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不会使用 JSON 将信息发送到服务器。您将使用查询字符串参数发送信息,并且可以使用任何 HTTP 动词来执行此操作,有一个很棒的 这里提问,并附有解释和更多资源。
您想要使用的服务器端技术取决于您,PHP 是一个不错的选择。您应该使用 PHP 中的任何动词来引用您发送的参数,其中最流行的是 $_GET 和 $_POST。当您发送一些私人信息(例如抄送详细信息)时,通常会使用 POST。
这种方法在应用程序商店审批方面不存在任何问题。从应用程序向 Web 服务发出请求是完全正常的。
You won't be using JSON to send the information to the server. You'll be sending the information using query string parameters and you can use any of the HTTP verbs to do this, there is a great question here with an explanation and more resources.
The server side tech you want to use is up to you, PHP is a fine choice. You should use whichever verb in PHP to reference the params you send, the most popular of these is $_GET and $_POST. POST is generally used when you send some private information such as CC details.
There are no issues with this approach regarding app store approval. Making a request to a web service from an app is completely normal.
尝试这些示例:调用 PHP api 的 Phonge 间隙演示
Try these sample : Phonge gap Demo to call PHP api