RubyMine7.0.1在每个控制器类中显示此警报 下面的控制器类文件。 感谢。
class ApplicationController < ActionController::Base
protect_from_forgery with: :exception
helper_method :current_user, :logged_in?
before_action :authenticate
private
def current_user
return unless sessions[:user_id]
@current_user ||= User.find(session[:user_id])
end
def logged_in?
!!session[:user_id]
end
def authenticate
return if logged_in?
redirect_to root_path, alert: 'ログインして下さい。'
end
end
答案 0 :(得分:0)
当我从现有来源导入项目并且没有为项目正确设置Project SDK时,我收到了同样的错误。