我对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对象?
谢谢 索伦
答案 0 :(得分:1)
Schedule.new.from_json(json)