我正在学习 Ruby on Rails。
我的http://localhost:3000/locations.json
回报如下:
[{
"name":"ABC",
"address":"xyz",
"latitude":12.3,
"longitude":14.5,
"url":"http://localhost:3000/locations/1.json"
}]
如何在不解析 URL的情况下修改locations_controller.rb
JSON 返回的顺序?id
[{
"id":1,
"name":"ABC",
"address":"xyz",
"latitude":12.3,
"longitude":14.5,
"url":"http://localhost:3000/locations/1.json"
}]
我的当前locations_controller.rb
包含以下内容:
def index
puts "index"
@locations = Location.all
end
谢谢你。