ruby-on-rails – 在Formtastic中使用:collection和:include_blank.怎么做?

前端之家收集整理的这篇文章主要介绍了ruby-on-rails – 在Formtastic中使用:collection和:include_blank.怎么做?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在 Ruby on Rails上使用了一流的Formtastic插件.

有人知道如何在使用自定义集合时包含空白(选项)?

当我尝试:

<%= f.input :organizations,:collection => Organization.all(:order => :name),:include_blank => true %>

我收到选择框与集合,但不是空白…

解决方法

什么样的协会是:组织?如果您指定:as => :选择?

有以下belongs_to的选择,日期,时间和日期时间输入的规范覆盖:

f.input(:author,:as => :select,:include_blank => true)
f.input(:created_at,:as => :date,:as => :time,:as => :datetime,:include_blank => true)

我的猜测是,组织不是一个belongs_to协会,对吧?如果是:has_many或:has_and_belongs_to_many关联,Formtastic将尝试复选框或多选.在多重选择的情况下,显然在那里有一个空行是没有意义的(你只是不选择任何项目).

希望这有帮助,请发布有关模型和协会的更多细节.

原文链接:https://www.f2er.com/ruby/271882.html

猜你在找的Ruby相关文章