Ruby on Rails - Formularios HTML
Formar
Para crear una etiqueta de formulario con la acción especificada y con la solicitud POST, use la siguiente sintaxis:
<%= form_tag :action => 'update', :id => @some_object %>
<%= form_tag( { :action => :save, }, { :method => :post }) %>
Utilice: multipart => true para definir un formulario MIME-multipart (para cargas de archivos).
<%= form_tag( {:action => 'upload'}, :multipart => true ) %>
Subir archivo
Defina un formulario de varias partes en su vista:
<%= form_tag( { :action => 'upload' }, :multipart => true ) %>
Upload file: <%= file_field( "form", "file" ) %>
<br />
<%= submit_tag( "Upload file" ) %>
<%= end_form_tag %>
Manejar la carga en el controlador -
def upload
file_field = @params['form']['file'] rescue nil
# file_field is a StringIO object
file_field.content_type # 'text/csv'
file_field.full_original_filename
...
end
Campos de texto
Para crear un campo de texto, use la siguiente sintaxis:
<%= text_field :modelname, :attribute_name, options %>
Eche un vistazo al siguiente ejemplo:
<%= text_field "person", "name", "size" => 20 %>
Esto generará el siguiente código:
<input type = "text" id = "person_name" name = "person[name]"
size = "20" value = "<%= @person.name %>" />
Para crear campos ocultos, use la siguiente sintaxis;
<%= hidden_field ... %>
Para crear campos de contraseña, use la siguiente sintaxis;
<%= password_field ... %>
Para crear campos de carga de archivos, use la siguiente sintaxis;
<%= file_field ... %>
Área de texto
Para crear un área de texto, use la siguiente sintaxis:
<%= text_area ... %>
Eche un vistazo al siguiente ejemplo:
<%= text_area "post", "body", "cols" => 20, "rows" => 40%>
Esto generará el siguiente código:
<textarea cols = "20" rows = "40" id = "post_body" name =" post[body]">
<%={@post.body}%>
</textarea>
Boton de radio
Para crear un botón de opción, utilice la siguiente sintaxis:
<%= radio_button :modelname, :attribute, :tag_value, options %>
Eche un vistazo al siguiente ejemplo:
radio_button("post", "category", "rails")
radio_button("post", "category", "java")
Esto generará el siguiente código:
<input type = "radio" id = "post_category" name = "post[category]"
value = "rails" checked = "checked" />
<input type = "radio" id = "post_category" name = "post[category]" value = "java" />
Botón de casilla de verificación
Para crear un botón de casilla de verificación, utilice la siguiente sintaxis:
<%= check_box :modelname, :attribute,options,on_value,off_value%>
Eche un vistazo al siguiente ejemplo:
check_box("post", "validated")
Esto generará el siguiente código:
<input type = "checkbox" id = "post_validate" name = "post[validated]"
value = "1" checked = "checked" />
<input name = "post[validated]" type = "hidden" value = "0" />
Veamos otro ejemplo:
check_box("puppy", "gooddog", {}, "yes", "no")
Esto generará el siguiente código:
<input type = "checkbox" id = "puppy_gooddog" name = "puppy[gooddog]" value = "yes" />
<input name = "puppy[gooddog]" type = "hidden" value = "no" />
Opciones
Para crear una lista desplegable, utilice la siguiente sintaxis:
<%= select :variable,:attribute,choices,options,html_options%>
Eche un vistazo al siguiente ejemplo:
select("post", "person_id", Person.find(:all).collect {|p| [ p.name, p.id ] })
Esto podría generar el siguiente código. Depende del valor disponible en su base de datos. -
<select name = "post[person_id]">
<option value = "1">David</option>
<option value = "2">Sam</option>
<option value = "3">Tobias</option>
</select>
Fecha y hora
A continuación se muestra la sintaxis para usar datos y tiempo:
<%= date_select :variable, :attribute, options %>
<%= datetime_select :variable, :attribute, options %>
A continuación se muestran ejemplos de uso:
<%=date_select "post", "written_on"%>
<%=date_select "user", "birthday", :start_year => 1910%>
<%=date_select "user", "cc_date", :start_year => 2005,
:use_month_numbers => true, :discard_day => true, :order => [:year, :month]%>
<%=datetime_select "post", "written_on"%>
Etiqueta de fin de formulario
Utilice la siguiente sintaxis para crear la etiqueta </form>:
<%= end_form_tag %>