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}'"