2010-12-17 91 views
0


我有一個登錄表單(/用戶)。
和方法:
-authenticate
-logoutRails路線問題

而且一個視圖index.html.erb,它包含的登錄表單,認證是做工精細,但我想我有路由問題。
你能給我一個樣本路線嗎?
我的路由器如下所示:
map.logout'logout',:controller =>'sessions',:action =>'destroy'
map.login'login',:controller =>'sessions',:action =>「新」
在會話控制具有破壞的方法,但當我輸入/退出它的說:缺少模板會話/ destroy.erb鑑於路徑應用程序/視圖

+0

我的控制器看起來像: map.logout '退出',:控制器=> '會議' ,:action =>'destroy' map.login'login',:controller =>'sessions',:action =>'new' 在會話控制中有摧毀方法,但是當我輸入/註銷它說:Missing模板session/destroy.erb查看路徑app/views – Dodjs 2010-12-17 20:17:22

回答

1

Rails中的樣品路線3

match '/user(/index)' => 'users#index' 

如果您可以澄清您遇到的問題(併發布相關代碼),這將有所幫助。