我有一个数组,其中包含混合了不同情况的字符串,如下所示:
WEBSITES = ["The Atlantic", "BBC", "CNN", "The Economist" ]
当我遍历这个数组(特别是我的 Rails 表单中的选择助手)时,我得到
"The atlantic", "Bbc", "Cnn", "The economist"
如何以与数组中相同的格式打印它?
编辑:
这是我的文件(Rails)。
数组在我的模型中
class Survey < ActiveRecord::Base
WEBSITES = ["The Atlantic", "BBC", "CNN", "The Economist"]
end
表格在这里
<%= form_for @survey do |f| %>
<% Survey::WEBSITES.each_with_index do |site, index| %>
<%= f.label site %>
<%= f.select "answer_field_#{ index +1 }".to_sym %>
<% end %>
<% end %>