我正在尝试创建一个感谢页面,我的路由工作正常,因为我测试它的url并且工作正常,但是当我尝试重定向创建操作时,我得到:
没有路线匹配{:action =>“show”,:controller =>“schedule”,:locale =>:en,:id => nil}
控制器
def create
@appointment = Appointment.new(params[:appointment])
if @appointment.save
#send email
AppointmentMailer.appointment_confirmation(@appointment).deliver
AppointmentMailer.new_appointment(@appointment).deliver
redirect_to :action => "thank_you"
else
render :action => 'new', :alert => @appointment.errors.full_messages.split(', ')
end
end
def new
@schedule = Schedule.find(params[:id])
@appointment = @schedule.appointments.new
end
def thank_you
@appointment = Appointment.find(params[:id])
end
路线
scope ":locale", :locale => /#{I18n.available_locales.join("|")}/ do
root :to => "Doctors#index"
resources :specialties
resources :branches
resources :doctors do
get 'new_schedule', :on => :member, :controller => 'schedules', :action => 'new'
end
# NIA: Here is the trick: we remove /shedules/new route (with :except => :new)
# and map /doctors/new_schedule instead to SchedulesController#new action (see above)
# (the same is done with appointments)
resources :schedules, :except => :new do
get 'new_appointment', :on => :member, :controller => 'appointments', :action => 'new'
end
resources :appointments do
member do
get :thank_you
end
end
end
match '*path', :to => redirect("/#{I18n.default_locale}/%{path}")
match '', :to => redirect("/#{I18n.default_locale}")
答案 0 :(得分:1)
你的路线错了。你想要这个(s / member / collection):
resources :appointments do
collection do
get :thank_you
end
end
使用“会员”,您的感谢路线预计会收到您未通过的身份证件。因此它失败了。收集不会发生。
在进行此更改之前运行'rake routes'以查看我正在谈论的内容...然后再运行它。