首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网络技术 > 网络基础 >

rails2.3.2 ExceptionNotifier 配备

2012-08-27 
rails2.3.2 ExceptionNotifier 配置必须先在项目中要加入plugin?rescue_from Exception do |exception|pp

rails2.3.2 ExceptionNotifier 配置

必须先在项目中要加入plugin

?

rescue_from Exception do |exception|    pp exception    case exception      when "ActionController::NameError"      flash[:error] = exception.message.to_s      when "ActiveRecord::RecordNotFound"      flash[:error] = exception.message.to_s      when "ActionController::UnknownAction"      flash[:error] = exception.message.to_s.split(".")[0]  rescue  "No action responded to #{params[:action]}"      else      return rescue_action_in_public(exception)    end    redirect_to :controller => 'blog', :action => "list"  end

?哈哈,这样就大功告成了!!!

热点排行