ActiveAdmin 找不到 AdminUser 错误的有效映射
我按照此处的说明进行操作: http: //net.tutsplus.com/tutorials/ruby/create-beautiful-administration-interfaces-with-active-admin/
所以在步骤 2 中,我转到/app/models/admin_user.rb 并附加以下内容: after_create { |管理| 以下
def password_required?
new_record? ? false : super
end
然后我转到 /admin/admin_users/new ,当我尝试添加用户 RuntimeError in Admin::AdminUsersController#create
gt; 时,我收到
错误
找不到 #
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在你的environments/development.rb中确保你的类被缓存:
根据与GitHub上记录的错误相关的评论,这并不理想,但在这种情况下是必要的,因为Rails中的代码重新加载怪癖:https://github.com/gregbell/active_admin/issues/733
In your environments/development.rb ensure your classes are cached:
This is not ideal, but necessary in this instance due to a code reloading quirk in Rails, according to comments associated with the bug logged over at GitHub: https://github.com/gregbell/active_admin/issues/733