6

#showページにネストされたフォームを追加することは可能ですか?

これで、admin/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

投稿とコメントのモデルは次のようになります。

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 に答える