我有一个愚蠢的问题:
= simple_form_for :session, url: :sessions do |f|
= f.input :email
= f.input :password
= f.button :submit, 'Sign in!'
def create
user = User.find_by_email(params[:email])
if user && user.authenticate(params[:password])
session[:user_id] = user.id
redirect_to root_path, :notice => "Logged in!"
else
flash.now.alert = "Invalid email or password"
render "new"
end
end
看起来我在参数中没有电子邮件和密码,因为在 Rails 控制台中一切正常。有人可以解释一下我的表单中的 :session 是什么意思吗?我怎样才能得到我的电子邮件和密码?