我在rails 4 app中使用简单的表单。
我有一个用于选择时区的表单字段,如下所示:
<%= f.input :time_zone, priority: /Australia/, label: 'Your time zone', :label_html => { :class => 'question-project' }, placeholder: 'Select', :input_html => {:style=> 'width: 650px', class: 'response-project'} %>
表单输入正常工作。
在我看来,我有:
<div class="bobp"> <%= @profile.time_zone %> </div>
当我测试时 - 现场没有任何内容。当我检查谷歌浏览器中的元素时,字段中没有任何内容。
任何人都可以看到错误吗?
答案 0 :(得分:2)
尝试将输入字段更新为
<%= f.input :time_zone, priority: ActiveSupport::TimeZone['Australia/Perth'], label: 'Your time zone', :label_html => { :class => 'question-project' }, placeholder: 'Select', :input_html => {:style=> 'width: 650px', class: 'response-project'} %>