每次用户提交一些统计信息时,我的应用都会成功为表创建行。现在我想提供一个删除按钮,以便能够删除一些行。
当我点击删除按钮时,我收到错误:
undefined method `destroy' for nil:NilClass
看起来像rails在这种情况下无论出于何种原因都不理解destroy方法,或者rails没有看到任何要销毁的东西,因此nil:NilClass。
我的第一个问题是确定是哪种情况,如果是其中之一。
我的第二个问题是解决它:D
这是我的show.html:
<% provide(:title, "Log" ) %>
<% provide(:heading, "Your Progress Log") %>
<div class="row">
<div class="span8">
<% if @user.status_update.any? %>
<h3>Status Updates (<%= @user.status_update.count %>)</h3>
<table>
<thead>
<tr>
<th>Entry Date</th>
<th>Weight</th>
<th>BF %</th>
<th>LBM</th>
<th>Fat</th>
<th>Weight Change</th>
<th>BF % Change</th>
<th>Fat Change</th>
</tr>
</thead>
<tbody class = "status updates">
<%= render @status_updates %>
</tbody>
<% end %>
</div>
</div>
“&lt;%= render @status_updates%&gt;”调用_status_update部分。
<tr>
.
.
.
.
<% if current_user==(status_update.user) %>
<td>
<%= link_to "delete", status_update, method: :delete %>
</td>
<% end %>
</tr>
最后,这是StatusUpdateController
def destroy
@status_update.destroy
redirect_to root_url
end
以下是错误页面上的参数:
{"_method"=>"delete",
"authenticity_token"=>"w9eYIUEd2taghvzlo7p3uw0vdOZIVsZ1zYIBxgfBymw=",
"id"=>"106"}
答案 0 :(得分:10)
由于您没有显示任何可以分配@status_update
的代码(过滤器等),我认为没有。因此,未设置@status_update
方法中的实例变量destroy
。您需要使用对象的ID查询类。
重写你的destroy方法如下:
def destroy
@status_update = StatusUpdate.find(params[:id])
if @status_update.present?
@status_update.destroy
end
redirect_to root_url
end
注意:将班级名称StatusUpdate
替换为您的实际班级名称。