在索引视图(任务的附件列表)中,我有一个销毁(删除)记录(附件)的链接。它会在删除后自动转到/ attachments(show)页面。我希望它只是刷新link_to代码所在的页面。
以下是索引视图中的代码:
<td><%= link_to 'Delete', attachment, confirm: 'Are you sure?', method: :delete, :class => 'btn btn-mini btn-danger' %></td>
感谢您的帮助!
答案 0 :(得分:1)
在附件控制器中尝试:
def destroy
@attachment = Attachment.find(params[:id])
@attachment.destroy
respond_to do |format|
format.html { redirect_to current_page_path }
end
end
用我当前的页面路径替换 current_page_path ...