将JSON POST请求解析为对象?

时间:2010-08-25 20:11:31

标签: ruby-on-rails

我对rails很新。我的控制器中有这个代码:

@schedules = Schedules.find(:all, :conditions => ["id = ?", params[:id]])
respond_to do |format|
  format.html # list.html.erb
  format.json { render :json => @schedules.to_json }
end

这很有效,但我怎么做其他方式?如何将收到的JSON解析为Schedules对象?

谢谢 索伦

1 个答案:

答案 0 :(得分:1)

Schedule.new.from_json(json)