0

我正在 Rails 3 中编写一个供 iOS 应用程序读取的 API。

我写了这个:

def index
  @shops = Shop.all

  render json: @shops
end

输出以数组形式出现:

[{
"created_at": "2012-07-28T10:35:38Z",
"id": 1,
"name": "Shop1",
"phone": "111-111-1111",
"updated_at": "2012-07-28T10:35:38Z"
}]

但是,我希望我的 iOS 应用程序将其作为字典阅读

如何将 JSON 输出转换为字典?

4

1 回答 1

0

我环顾四周,但不幸的是找不到自动执行此操作的方法。目前,您最好的选择可能是手动执行此操作:

def index
  @shops = Shop.all

  render json: {:shops => @shops}
end
于 2012-08-16T15:18:22.110 回答