3

我首先安装了设计并对其进行了更改,因此我可以使用用户名而不是电子邮件登录。之后,我将 Activeadmin gem 输入到我的 gem 文件中。

之后,我进行了捆绑安装并 rake active_admin:install。但是在尝试登录后端 /admin/login 后,我看到了以下错误消息:

undefined method `username' for #<AdminUser:0x00000004bb2e58>

在此代码上:

提取的源代码(第 7 行附近):

4:   <% scope = Devise::Mapping.find_scope!(resource_name) %>
5:   <%= active_admin_form_for(resource, :as => resource_name, :url => send(:"#{scope}_session_path"), :html => { :id => "session_new" }) do |f|
6:     f.inputs do
7:       resource.class.authentication_keys.each { |key| f.input key, :input_html => {:autofocus => true}}
8:       f.input :password
9:       f.input :remember_me, :label => t('active_admin.devise.login.remember_me'), :as => :boolean, :if =>  false  #devise_mapping.rememberable? }
10:     end

有人知道如何解决这个问题吗?如果您需要更多信息,请询问。

罗洛夫

编辑:我想我可以通过这样做来解决这个问题:http: //blog.blazingcloud.net/2012/07/29/activeadmin-with-existing-devise-authentication/ 但是现在所有登录都失败了(401)他们在哪里没有activeadmin他们成功了

4

1 回答 1

0

我遇到了同样的错误,我将其添加到我的 AdminUser 模型中解决了它

  def login=(login)
    @login = login
  end

  def login
    @login || self.email
  end

  def self.find_for_database_authentication(warden_conditions)
    conditions = warden_conditions.dup
    login = conditions.delete(:login)
    where(conditions).where(["lower(email) = :value", { :value => login.strip.downcase }]).first
  end
于 2014-03-30T21:30:23.500 回答