gpt4 book ai didi

RubyMine 显示警报 'Cannot find "before_action"'

转载 作者:行者123 更新时间:2023-12-02 20:58:22 30 4
gpt4 key购买 nike

RubyMine7.0.1 在每个 Controller 类中显示此警报。
下面是 Controller 类文件。谢谢。

application_controller.rb

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

最佳答案

当我从现有源导入项目并且项目 SDK 没有为该项目正确设置时,我遇到了同样的错误。

关于RubyMine 显示警报 'Cannot find "before_action"',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27575293/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com