0

在索引视图(任务的附件列表)中,我有一个链接来销毁(删除)记录(附件)。删除后它会自动转到 /attachments(显示)页面。我希望它只刷新 link_to 代码所在的页面。

这是索引视图中的代码:

            <td><%= link_to 'Delete', attachment, confirm: 'Are you sure?', method: :delete, :class => 'btn btn-mini btn-danger' %></td>

谢谢您的帮助!

4

1 回答 1

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 ...

于 2013-04-07T19:55:02.537 回答