我可以输入什么 url 来查看 json 值以及如何让我的 iphone 项目访问它。
这是我的索引方法
def index
@players = Player.find(:all)
respond_to do |format|
format.html
format.json { render :json => @players.to_json }
end
end
这是我的路线。
ChooseTeams::Application.routes.draw do
resources :players
root :to => "players#index"
end
请询问任何其他信息,因为我是 Rails 新手,不知道这里还提供什么。