我有一个使用 Devise gem 的 Rails 应用程序,我正在创建一个 Rails 引擎来安装在这个应用程序中。
mount Comments::Engine => '/talk', :as => 'comments'
在引擎中,我想current_user
从主应用程序中获取实例。
在{main_app}/initializers/comments.rb
Comments.user_class = "User"
Comments.current_user = "current_user" #current_user is Devise method(works fine in app)
在{engine}/lib/comments.rb
require "comments/engine"
module Comments
mattr_accessor :user_class, :current_user
def self.user_class
@@user_class.constantize
end
def self.current_user
send(@@current_user)
end
end
当我调用时Comments.current_user
,我收到错误“错误的常量名称 current_user”。
我究竟做错了什么?