我可以在simple_form中自定义关联吗?

时间:2014-03-27 17:58:21

标签: ruby-on-rails associations simple-form

我想像这样显示我的simple_form关联:

enter image description here

我可以使用simple_form配置执行此操作,还是需要更改路由或类似的内容?

我目前正在使用这些模型

到课程

class Curso < ActiveRecord::Base
  has_many :modulos
end

到模块

class Modulo < ActiveRecord::Base
  has_many :aulas
  belongs_to :curso
end

以及这些课程

class Aula < ActiveRecord::Base
  belongs_to :modulo
end
我得到的最好的是:

= f.association :modulo, label: false, prompt: 'Selecione', collection: Modulo.all(order: 'curso_id')

但他列出如下:

enter image description here

0 个答案:

没有答案