0

I'm writing REST JSON services for Android and iOS mobile devices, but Ruby, Java and Objecive-C have different code styles. I'm looking for best way to write code in Ruby style, but consider the requirements of other languages. Thanks!

4

1 回答 1

1

许多 Rails 开发人员都遇到了这个问题。JSON 和 JavaScript 的最佳实践是使用 camelCase 作为属性名称。

我发现在任何返回的 JSON 上使用 .camelize(:lower) 是最简单的方法。

此处描述了从 camelCase 到 under_score 的其他转换:Converting camel case to underscore case in ruby

就灵活性而言,我一直在寻找接近 C# 的 JSON.NET for Ruby 的东西,但还没有找到。

于 2012-08-22T11:52:43.693 回答