gpt4 book ai didi

html - Rails form_tag 未显示

转载 作者:太空狗 更新时间:2023-10-29 14:41:54 26 4
gpt4 key购买 nike

我正在学习这个简单的教程 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 %>

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

最佳答案

根据guideform_tag

之前你需要一个 =
<%= form_tag("/search", :method => "get") do %>
<%= label_tag(:q, "Search for:") %>
<%= text_field_tag(:q) %>
<%= submit_tag("Search") %>
<% end %>

关于html - Rails form_tag 未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12106625/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com