在简单表单集合中使用双字元素

时间:2016-05-09 14:38:44

标签: simple-form

我有一个用simple_form构建的表单,我有一个集合,要求用户在表单中搜索多个元素。但是我如何构建它,我有一个空间划分集合中的每个元素。我遇到的问题是我需要一个名为online的元素,但我需要将其更改为online feature

  = f.input :recognition, :required => "", prompt: "-- SELECT ONE --",  input_html: { class: "formStyling" }, collection: %w{Article Blog LinkedIn Magazine Online }, label: "How did you hear about us?", required: false

我的问题是,是否有一种特定的方法来修改我编写的集合中发布的内容以允许使用两个单词条目?如果是这样,你会怎么做?

我已经尝试了#{"Online Search"}['Online Search'][Online Search]但没有取得多大成功

1 个答案:

答案 0 :(得分:0)

问题的解决方案是如何使用该集合。如果您专注于将集合元素构建为数组,则可以进行这些更改。

所以,将其改为

collection: [ "Article", "Blog", "LinkedIn", "Magazine", "Online Search", "Referral", "Twitter", "Other" ]

这应该可以解决问题!