2

我现在浏览了许多文章,其中有一些涉及到这一点,但似乎没有一个能解决我遇到的问题。我已经安装了 ActiveAdmin 并且一切正常,直到我尝试推送到 heroku。现在我收到以下错误,不知道如何解决。

NoMethodError in ActiveAdmin::Devise::Sessions#new

Showing /Users/gregoryhooven/.rvm/gems/ruby-1.9.3-p448/bundler/gems/active_admin-6c9e22ab0922/app/views/active_admin/devise/sessions/new.html.erb where line #7 raised:

undefined method `[]' for nil:NilClass

xtracted source (around line #7):

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

1 回答 1

0

有点晚,但也许可以用于其他人。我在本地系统上遇到了同样的问题。我想重新安装activeadmin。重新安装webrick后,如果尝试过,会给我这个错误代码127.0.0.1:3000/admin/login

ActionView::Template::Error (undefined method `new_password_path' for#<#<Class:0x007fc7ef1a3d08>:0x007fc7ef1a2f70>):

而且渲染的视图看起来也不是很好。我发现我必须满足一些未满足的 gem 依赖项。通过bundle install我更新sass- 从 3.4.16 到 3.4.14 - 和 arel- 从 6.0.0 到 6.0.2。然后它工作得很好。奇怪的是,在我重新安装 activeadmin 之前,rails g active_admin:install 我更新了所有 gem。据我了解,activeadmin 安装了它需要的软件包,我有一段时间没有碰我Gemfile的。

于 2015-07-13T16:49:40.503 回答