3

在我的应用程序中,我想为文本字段设置值。我想在这里做同样的事情

<input type="text" value ="something">

我的问题是我怎么能在 Rails 视图上做同样的事情。

   <h1>New location</h1>

<% form_for(@location) do |f| %>
  <%=  f.error_messages %>

  <p>
    <%= f.label :address %><br />
    <%=  f.text_field :address %>

  </p>
  <p>
    <%= f.label :latitude %><br />
    <%= f.text_field :latitude %>
  </p>
  <p>
    <%= f.label :longitude %><br />
    <%= f.text_field :longitude %>
  </p>
  <p>
    <%= f.submit 'Create' %>
  </p>
<% end %>

<%= link_to 'Back', locations_path %>
4

1 回答 1

5

通过传递value参数

<%= f.text_field :latitude, :value => 17 %>
于 2012-08-02T13:36:33.580 回答