1

我一直在阅读使用 Rails 进行敏捷 Web 开发,我目前在第 75/76 页上,您正在为产品设置视图。

我运行 rails s,我得到的是这个异常。

*C:/Users/Win7/Desktop/Agile/depot/app/views/products/index.html.erb:25:语法错误,意外keyword_end,期待')'');结束 ^ C:/Users/Win7/Desktop/Agile/depot/app/views/products/index.html.erb:34:语法错误,意外的keyword_ensure,期待')' C:/Users/Win7/Desktop/Agile/ depot/app/views/products/index.html.erb:36:语法错误,意外的keyword_end,期待')'*

这是视图中的代码:

<h1>Listing products</h1>

<table>
<% @products.each do |product| %>
<tr class="<%= cycle('list_line_odd', 'list_line_even') %>">
<td>
  <%= image_tag(product.image_url, class: 'list_image') %>
</td>

<td class="list_description">
  <dl>
    <dt><%= product.title %></dt>
    <dd><%= truncate(strip_tags(product.description), length: 80 %></dd>
  </dl>
</td>

<td class="list_actions">
  <%= link_to 'Show', product %><br />
  <%= link_to 'Edit', edit_product_path(product) %><br />
  <%= link_to 'Destroy', product, confirm: 'Are you sure?', method: :delete %>
</td>
</tr>

<% end %>

</table>


<br />

<%= link_to 'New Product', new_product_path %>

我不知道为什么我会得到这个例外。任何人都可以解释一下吗?

一如既往,非常感谢!

4

2 回答 2

0

你错过了一个 ) 就行了

 truncate(strip_tags(product.description), length: 80 

它应该是

 truncate(strip_tags(product.description), length: 80) 
于 2012-06-07T18:12:56.530 回答
0

删除您在此文件中的那一端:

<% end %>

这个目的不是关闭任何东西。

于 2012-06-07T18:09:46.323 回答