我有一个远程调用的删除链接:
<%= link_to image_tag("trash.png"), [current_user, bookcase], method: :delete, :remote => true, confirm: "You sure?", title: bookcase.image %>
在我的控制器中,我通过重定向结束删除功能:
def destroy
@bookcase.destroy
redirect_to current_user
end
这可行,除了它将用户重定向到“user/show.html.erb”文件而不是“user/show.js.erb”文件。如何重定向用户,指定使用哪种格式?