0

我有这个简单的动作(最初由脚手架生成):

  def destroy
    @item = Item.find(params[:id])    
    @item.destroy

    respond_to do |format|
      format.html { redirect_to :back, :success => 'Post was successfully removed.' }
      format.json { head :no_content }
    end
  end

该页面被重定向回来,但未显示警报消息。(用于显示 Flash 消息的片段在整个应用程序中运行良好,但此处不适用)

这里有什么问题?

谢谢

4

2 回答 2

1

尝试这个:

  format.html { redirect_to :back, :flash => {:success => 'Post was successfully removed.' }}
于 2013-11-13T17:17:48.260 回答
0

Flash 键是:notice:alert。没有:success钥匙。

于 2013-11-13T17:17:08.400 回答