6

是否可以将嵌套表单添加到#show 页面?

现在我有了我的管理员/posts.rb:

ActiveAdmin.register Post do
  show do |post|
    h2 post.title
    post.comments.each do |comment|
      row :comment do comment.text end
    end
  end
end

它列出了帖子的所有评论。现在我需要一个表格来添加新评论。我正在尝试这样做:

ActiveAdmin.register Post do
  show do |post|
    h2 post.title
    post.comments.each do |comment|
      row :comment do comment.text end
    end

    form do |f|
      f.has_many :comments do |c|
        c.input :text
      end
    end
  end
end

并得到一个错误:

<form></form> 的未定义方法 `has_many' :Arbre::HTML::Form

Post 和 Comments 的模型如下所示:

class Post < ActiveRecord::Base
  has_many :comments
  accepts_nested_attributes_for :comments
end

class Comment < ActiveRecord::Base
  belongs_to :post
end

如何将该表单添加到我的显示页面?谢谢

4

2 回答 2

21

我为 has_one 关系做了这样的事情:

ActiveAdmin.register Post do
  show :title => :email do |post|

    attributes_table do
      rows :id, :first_name, :last_name
    end

    panel 'Comments' do
      attributes_table_for post.comment do
        rows :text, :author, :date
      end
    end

  end
end

如果您不需要 sorens 解决方案的额外灵活性,我敢打赌您可以使用它。

于 2013-03-03T18:17:34.880 回答
10

将此类信息添加到显示页面时,我使用以下配方

    ActiveAdmin.register Post do
      show :title => :email do |post|
        attributes_table do
          row :id
          row :first_name
          row :last_name
        end
        div :class => "panel" do
          h3 "Comments"
          if post.comments and post.comments.count > 0
            div :class => "panel_contents" do
              div :class => "attributes_table" do
                table do
                  tr do
                    th do
                      "Comment Text"
                    end
                  end
                  tbody do
                    post.comments.each do |comment|
                      tr do
                        td do
                          comment.text
                        end
                      end
                    end
                  end
                end
              end
            end
          else
            h3 "No comments available"
          end
        end
      end
    end
于 2012-08-05T16:48:16.163 回答