繁体   English   中英

rails_admin问题:has_many:通过表单不起作用

[英]rails_admin issue: has_many :through form doesn't work

我正在使用rails_admin gem并具有此Post模型

class Post < ActiveRecord::Base
  # Association
  has_many :post_categories
  has_many :categories, through: :post_categories
  has_many :post_tags
  has_many :tags, through: :post_tags

  # rails_admin configuration
  rails_admin do
    edit do
      field :title
      field :categories
      field :tags
    end
  end
end

问题是类别字段按预期显示,但标记字段却未显示。

rails_admin问题

请告诉我什么可能错了?

我想您会丢失accepts_nested_attributes_for :tags

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM