我的问题与 Rails 命名约定难题有关。我的应用程序具有注册、登录、退出功能。
对于注册页面,我使用了form_for(@user)
helper。
对于登录页面,我使用了form_for(:session, url: sessions_path)
. 但是在我的 routes.rb 文件中,我resources :sessions
在登录页面中包含了 form_for 助手参数中提到的单数而不是单数。
如果有人可以:
1.) 解决这个特定的 form_for 问题
2.) More importantly point me in the direction where I can learn/read about Rails naming conventions, I would be highly indebted.