加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

ruby-on-rails – 在Rails中抢救

发布时间:2020-12-16 22:37:45 所属栏目:百科 来源:网络整理
导读:我正在与下列作品合作; def index @user = User.find(params[:id]) rescue flash[:notice] = "ERROR" redirect_to(:action = 'index') else flash[:notice] = "OK" redirect_to(:action = 'index')end 现在我要么是否有正确的ID,我总是在我看来“OK”,我做错
我正在与下列作品合作;
def index
  @user = User.find(params[:id]) 
  rescue
    flash[:notice] = "ERROR"
    redirect_to(:action => 'index')
  else 
    flash[:notice] = "OK"
    redirect_to(:action => 'index')
end

现在我要么是否有正确的ID,我总是在我看来“OK”,我做错了什么?

当我在DB中没有ID以显示“错误”时,我需要.我也试图使用救援ActiveRecord :: RecordNotFound但是一样的事情.

所有的帮助是赞赏.

解决方法

在救援块结束后的所有代码仅在救援模块中没有返回时被解释.所以你可以在你的救援行动结束时打电话给你.
def index
  begin
    @user = User.find(params[:id]) 
  rescue
    flash[:notice] = "ERROR"
    redirect_to(:action => 'index')
    return
  end
  flash[:notice] = "OK"
  redirect_to(:action => 'index')
end

要么

def index
  @user = User.find(params[:id]) 
  # after is interpret only if no exception before
  flash[:notice] = "OK"
  redirect_to(:action => 'index')
rescue
  flash[:notice] = "ERROR"
  redirect_to(:action => 'index')
end

但在你的情况下,使用rescue_from或rescue_in_public更好

喜欢

class UserController < ApplicationController
  def rescue_in_public(exception)
    flash[:notice] = "ERROR"
    redirect_to(:action => 'index')
  end

  def index
    @user = User.find(params[:id]) 
    flash[:notice] = "OK"
    redirect_to(:action => 'index')
  end
end

但是,使用rescue_in_public并不是很好的建议

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读