1

I am a rails beginner and just generated scaffolded models. I am trying to connect this rails server to an android client that my co-founder made.

How can I do this? I was wondering if someone can please simplify the process to a beginner so that I can take the necessary steps to getting this done.

Thank you to anyone that helps!

4

1 回答 1

1

在这种情况下,Android 应用程序的代码将包括对服务器 API 的调用(通过对由 Rails 路由生成的http://myapp.com/users等 URL 的调用),这将返回来自 Rails 中的数据库的响应带有客户端将显示/评估的数据的应用程序。

您需要与您的联合创始人一起确定客户端需要什么类型的数据,识别那些 RESTful 端点,并在 Rails 中为那些尚不可用的端点创建其他方法和路由。

那里有大量的“创建 Rails API”文章,所以请四处挖掘。如果您有更具体的问题,请告诉我,我们可以在此处添加详细信息。

于 2012-09-28T16:56:08.693 回答