attempt_login
Phương thức sau được gọi bằng Ajax sau khi gửi biểu mẫu đăng nhập.
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
Vấn đề là điều redirect_to
đó không hoạt động.
Bạn sẽ giải quyết điều này như thế nào?
render :js => "window.location = '#{jobs_path}'"