html – Rails form_tag没有显示

前端之家收集整理的这篇文章主要介绍了html – Rails form_tag没有显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在按照这个简单的教程 http://railscasts.com/episodes/37-simple-search-form
这看起来很棒但是,我的表格标签似乎不起作用.这是我的HTML代码
表单标签甚至都没有显示出来.
<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 %>

我只有一个模型,“应用程序”

解决方法

根据 guide,你需要a = before form_tag
<%= form_tag("/search",:method => "get") do %>
  <%= label_tag(:q,"Search for:") %>
  <%= text_field_tag(:q) %>
  <%= submit_tag("Search") %>
<% end %>
原文链接:https://www.f2er.com/html/225351.html

猜你在找的HTML相关文章