我该如何重定向
get '/directory/:alphabet' => redirect('/directory/:alphabet/1') , :constraints => { :alphabet => /[A-Za-z#]/}
这会引发有关字母表的错误。我如何使用我得到的价值?
我该如何重定向
get '/directory/:alphabet' => redirect('/directory/:alphabet/1') , :constraints => { :alphabet => /[A-Za-z#]/}
这会引发有关字母表的错误。我如何使用我得到的价值?
请参阅http://guides.rubyonrails.org/routing.html#redirection下的“动态段”
使用 %{alphabet} 从源中读取值
get '/directory/:alphabet' => redirect('/directory/%{alphabet}/1') , :constraints => { :alphabet => /[A-Za-z#]/}