iPhone 应用程序后端示例

发布于 2024-12-05 05:34:29 字数 181 浏览 3 评论 0原文

我正在为我的 iPhone 应用程序编写后端,并且正在寻找用于编写后端的教程或示例代码。

我使用 RestKit 作为客户端。所以它将使用 JSON 和 RESTful 框架。

谢谢。

我的主要问题是我不知道如何转换来自 iPhone 的请求以返回相应的对象以及如何在后端将这些模型转换为 JSON。

I'm writing a backend for my iPhone app and I'm looking for tutorials or sample code for writing the backend.

I'm using RestKit as the client. so it would be using JSON and a RESTful framework.

Thanks.

My main problem is that I don't know how to translate the request from the iPhone to return the corresponding objects and how to translate those models to JSON in the backend.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

赢得她心 2024-12-12 05:34:29

我会查看 StackMob。他们的平台可以帮助您为您的移动应用程序构建完整的后端。它们提供您希望从后端获得的核心服务(安全的 REST API、自定义代码、推送通知、Facebook 和 Twitter 登录等)。他们还通过清晰的开发和部署环境以及简单且有组织的版本控制在部署方面提供帮助。他们帮助解决技术问题(处理数据/流量的增长/峰值)和问题。应用程序的业务(来自服务器和客户端的分析)扩展。 http://www.stackmob.com/product/

I would check out StackMob. Their platform helps you build a complete backend to your mobile app. They provide core services you'll want from your backend (secured REST API, Custom Code, Push Notifications, Facebook & Twitter log in and more). They also help on the deploy side with clear development and deployment environments along with easy and organized versioning. And they help with the technical (handle growth/spikes in data/traffic) & business (analytics from the server & client side) scaling of your app. http://www.stackmob.com/product/

落日海湾 2024-12-12 05:34:29

PHP 与内置的 JSON 相当不错

<?php

    $data = file_get_contents("php://input");

    $jsondata = json_decode($data);

    $result = array();

// *****************************************************************
// do something with $jsondata and put the results in $result
// *****************************************************************

    $result['success'] = true;
    $result['message'] = "Call Successful!";

    echo json_encode($result);
?>

PHP is pretty nice with the built in JSON

<?php

    $data = file_get_contents("php://input");

    $jsondata = json_decode($data);

    $result = array();

// *****************************************************************
// do something with $jsondata and put the results in $result
// *****************************************************************

    $result['success'] = true;
    $result['message'] = "Call Successful!";

    echo json_encode($result);
?>
眼眸印温柔 2024-12-12 05:34:29

如果你想在 ruby​​ on Rails 中编写 Web 服务,那么使用 Objective Resource 它有 iphone 项目和 ruby​​ on Rails 的后端

IF you want to write web service in ruby on rails then use Objective Resource It has iphone project and backend in ruby on rails

醉殇 2024-12-12 05:34:29

现在您不需要为移动应用程序(iOS、Android、Blackberry、WindowsPhone...)编写服务器端,有很多免费的自定义后端。我在一些应用程序中使用了 QuickBlox 自定义后端,它非常棒 自定义对象模块,具有很多功能。

请参阅 iOS 自定义对象示例代码示例。它展示了如何:

  • 创建自己的服务器数据结构和创建自己的服务器数据结构。使用它。
  • 使用大量过滤器获取、创建、更新、删除数据。

只需下载并跑步。也许这就是你所需要的一切。

不要编写服务器端代码,节省您的时间和精力钱!)

Now you don't need to write server side for you mobile applications (iOS, Android, Blackberry, WindowsPhone...), there are lots of free custom backends. I used QuickBlox custom backend in some my apps, there is great Custom Objects module with lots of features.

Look at iOS custom objects sample code example. It shows how to:

  • Create own server data structure & use it.
  • Get, Create, Update, Delete your data using a lot of filters.

Just download & run. Maybe it's all what you need.

Don't write server side code, save your time & money!)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文