返回json数据的问题
我想在浏览器中通过地址http://localhost:3000/test 返回在浏览器中[{"firstname":"1","lastname":"3"},{"firstname":"2","lastname":"4",}]这样的json数据,在TestController中:
class TestController < ApplicationController
def index
@users=User.find(:all)
??
end
end
(其中表user只有2条记录)
请问:?? 处怎么写?
[解决办法]
这样写:
render :json => @users.to_json
[解决办法]
在 控制器里的 redirect_to 里写多个 返回json