我正在 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 输出转换为字典?