导轨 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 行代码。