Rails路由问题

时间:2010-12-17 16:32:34

标签: ruby-on-rails


我有一个登录表单(/ user) 方法:
-authenticate
-logout

一个视图index.html.erb,它包含登录表单,authenticate工作正常,但我认为我的路由有问题。
你能给我一个样本路线吗? 我的路由器看起来像:
map.logout'logout',: controller => 'sessions',:action => “摧毁”
 map.login'login',: controller => 'sessions',:action => “新”
在会话控件中有destroy方法,但是当我输入/注销它时说:在视图路径app / view中缺少模板会话/ destroy.erb

2 个答案:

答案 0 :(得分:1)

Rails 3中的示例路由

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

如果您能澄清您所遇到的问题(并发布相关代码),将会很有帮助。

答案 1 :(得分:0)

所有路由系统都在指南中解释:

http://guides.rubyonrails.org

特别是这个:http://guides.rubyonrails.org/routing.html