2012-08-24 21 views
6

Estoy siguiendo este sencillo tutorial http://railscasts.com/episodes/37-simple-search-form que parece ser excelente, pero mi etiqueta de formulario no parece funcionar. Aquí está mi código html! La etiqueta del formulario ni siquiera aparece.Rieles form_tag no muestra

<h1>Listing applications</h1> 

<% form_tag applications_path do %> 
    <p> 
     <%= text_field_tag :search %> 
     <%= submit_tag "Search" %> 
    </p> 
<% end %> 

<table> 
    <tr> 
    <th>Name</th> 
    <th>Enviroment</th> 
    <th>Applicationurl</th> 
    <th>Server</th> 
    <th>Additional Servers</th> 
    <th></th> 
    <th></th> 
    <th></th> 
    </tr> 

<% @applications.each do |application| %> 
    <tr> 
    <td><%= application.name %></td> 
    <td><%= application.date %></td> 
    <td><%= application.size %></td> 
    <td><%= application.author %></td> 
    <td><%= application.addi_servers %></td> 
    <td><%= link_to 'Show', application %></td> 
    <td><%= link_to 'Edit', edit_application_path(application) %></td> 
    <td><%= link_to 'Destroy', application, confirm: 'Are you sure?', method: :delete %></td> 
    </tr> 
<% end %> 
</table> 

<br /> 

<%= link_to 'New Application', new_application_path %> 

Y tengo un solo modelo, "Aplicación"

Respuesta

19

De acuerdo con la guide se necesita un = antes form_tag

<%= form_tag("/search", :method => "get") do %> 
    <%= label_tag(:q, "Search for:") %> 
    <%= text_field_tag(:q) %> 
    <%= submit_tag("Search") %> 
<% end %> 
+1

el video no incluyó un '=' –

+2

Creo que tal vez las versiones anteriores de los rieles no lo requieren para las etiquetas de formulario? – Dty

+1

The Ruby on Rails Guide to Rails Form Helpers falta el "=" –