Questions tagged «activeadmin»

3
Rails Admin与ActiveAdmin [关闭]
从目前的情况来看,这个问题不适合我们的问答形式。我们希望答案能得到事实,参考或专业知识的支持,但是这个问题可能会引起辩论,争论,民意调查或扩展讨论。如果您认为此问题可以解决并且可以重新提出,请访问帮助中心以获取指导。 8年前关闭。 我一直在研究一些Rails管理员插件,并遇到了以下问题: https://github.com/gregbell/active_admin https://github.com/sferik/rails_admin https://github.com/thoughtbot/administrate(编辑:稍后添加) 关于哪个建议的任何建议。我需要它来支持模型关联和文件上传功能。

5
使用Rails 4进行主动管理员安装
在Rails 4上安装活动管理员时出现此错误 Bundler could not find compatible versions for gem "actionpack": In Gemfile: meta_search (>= 1.1.0.pre) ruby depends on actionpack (~> 3.1.0.alpha) ruby rails (= 4.0.0.rc1) ruby depends on actionpack (4.0.0.rc1) 我遵循以下指示:http : //www.activeadmin.info/docs/documentation.html 有人帮忙。

2
ActiveAdmin具有has_many问题;未定义的方法“ new_record?”
我正在尝试为与Step具有has_many关系的配方模型自定义ActiveAdmin表单。 class Recipe < ActiveRecord::Base has_many :steps end class Step < ActiveRecord::Base acts_as_list :scope => :recipe belongs_to :recipe end 我在ActiveAdmin文件中有以下与此相关的内容: form do |f| f.has_many :steps do |ing_f| ing_f.inputs end end 当我尝试加载表单时引发以下错误: 未定义的方法“ new_record?” 对于nil:NilClass 到目前为止,我已经将它隔离到has_many方法,但是我迷失了它。任何建议和帮助,将不胜感激!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.