0

导轨 4,红宝石 2.0。我想创建一个公共文件服务页面,其中包含每个文件的下载链接,并可以使用复选框和“下载检查的文件”按钮检查多个文件的下载。

我在 index.html.erb 中的代码

<% form_tag(controller: "files", action: "download_many", method: "get")%>
<h1>St.Catherines</h1>
  <ul>
<% @stcatherines.each do |file|%>
  <li><%= link_to file, :action => "download", :name =>file %></li>
  <%check_box_tag(file)%>
<%end%>
  <%submit_tag :value => "Download checked files" %>
  </ul>
<%end%>

其中@stcatherines 是一个字符串数组下载链接有效,表单中的某些内容一定是错误的。我遇到了一个奇怪的错误:

  .../app/views/files/index.html.erb:11: 
  syntax error, unexpected keyword_ensure, expecting end-of-input

请注意,第 11 行出现了语法错误,而我只有 10 行代码。

4

1 回答 1

1

我认为您错过了打开form_tag并添加了结尾,导致语法错误。do在声明之后添加 aform_tag应该可以解决它...尝试将代码更改为以下内容(注意do在第 1 行添加):

<% form_tag(controller: "files", action: "download_many", method: "get") do %>
<h1>St.Catherines</h1>
  <ul>
<% @stcatherines.each do |file|%>
  <li><%= link_to file, :action => "download", :name =>file %></li>
  <% check_box_tag(file) %>
<% end # each %>
  <%submit_tag :value => "Download checked files" %>
  </ul>
<% end # form_tag %>
于 2013-10-19T08:09:12.770 回答