出于某种原因,加载视图页面时,我新创建的输入字段(描述和标题)不可见。当我检查检查器时,有一个CSS元素'display:none',但为什么它默认会隐藏元素呢?我的CSS文件中没有任何显示:无...
<%= simple_form_for(@ad) do |f| %>
<%= f.input :website %>
<%= f.input :title %>
<%= f.input :description %>
<%= f.input :photo %>
<%= f.input :photo_cache, as: :hidden %>
<%= f.submit 'publish my ad!'%>
<% end %>
<%= link_to "home", root_path %>'