我正在为我的 iPhone 应用程序编写后端,并且正在寻找编写后端的教程或示例代码。
我使用 RestKit 作为客户端。所以它将使用 JSON 和 RESTful 框架。
谢谢。
我的主要问题是我不知道如何翻译来自 iPhone 的请求以返回相应的对象,以及如何在后端将这些模型翻译为 JSON。
我会看看 StackMob。他们的平台可帮助您为移动应用程序构建完整的后端。它们提供您希望从后端获得的核心服务(安全的 REST API、自定义代码、推送通知、Facebook 和 Twitter 登录等)。它们还通过清晰的开发和部署环境以及简单且有组织的版本控制在部署方面提供帮助。它们有助于您的应用程序的技术(处理增长/数据/流量高峰)和业务(来自服务器和客户端的分析)扩展。http://www.stackmob.com/product/
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);
?>
如果您想在 ruby on rails 中编写 Web 服务,请使用Objective Resource它在 ruby on rails 中有 iphone 项目和后端
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:
Just download & run. Maybe it's all what you need.
Don't write server side code, save your time & money!)