我在Ruby on Rails中使用标签时遇到了奇怪的行为。 我有一个具有各种输入形式的表格。选择后的每个标签都显示在页面顶部。
我还不知道为什么,有什么主意吗?
有关说明,请参见屏幕截图
代码如下:
Name: <%= f.text_field :name %>
Email: <%= f.text_field :email %>
Role: <%= f.select :role, options_for_select(...) %>
<% if @user.eql?(current_user) %>
<%= f.label :password, for: "password" %> <i>(leave ...it)</i>
<%= f.password_field :password, autocomplete: "off", id: "password" %>
<% if @minimum_password_length %>
<br/>
<em><%= @minimum_password_length %> characters minimum</em>
<% end %>
<%= f.label :password_confirmation %>
<%= f.password_field :password_confirmation, autocomplete: "off" %>
<%= f.label :current_password %> <i>(we need … changes)</i><br/>
<%= f.password_field :current_password, autocomplete: "off" %>
<% end %>