次のattempt_login
メソッドは、ログインフォームが送信された後にAjaxを使用して呼び出されます。
class AccessController < ApplicationController
[...]
def attempt_login
authorized_user = User.authenticate(params[:username], params[:password])
if authorized_user
session[:user_id] = authorized_user.id
session[:username] = authorized_user.username
flash[:notice] = "Hello #{authorized_user.name}."
redirect_to(:controller => 'jobs', :action => 'index')
else
[...]
end
end
end
問題はそれredirect_to
が機能しないことです。
これをどのように解決しますか?
render :js => "window.location = '#{jobs_path}'"