这是我收到的错误
NoMethodError in Restaurants#index
undefined method `address' for nil:NilClass
当我尝试添加:
地址:<%= @ restaurant.address%>
(请注意,此<%= @ restaurant.address%>适用于餐馆/ Show.html.erb
到我的阵列:
<%= div_for(@restaurants, :class => "container") do |restaurant| %>
<div class="row carousel-row">
答案 0 :(得分:2)
您应该删除@符号。 for循环中的变量为restaurant
,因此您可以使用
<p>Address: <%= restaurant.address %></p>