https://gorails.com/episodes/handle-404-using-rescue_from?autoplay=1

我的git: https://github.com/chentianwei411/embeddable_comments/tree/rescue_from


Handle 404s Better Using Rescue_from

在controller层添加resuce_from方法。对ActiveRecord::RecordNotFound❌进行营救。

当用户拷贝链接错误或者其他导致错误的url,网页会弹出一个404.

Well, if we couldn't find the episode, or the forum thread or whatever they were looking for, if we can't find it directly with the perfect match, then we should take that and search the database and clean it up a little bit, but then go search the database。


rails g scaffold Episode name slug

在controller修改:

private

  def set_episode
//find_by! 如果没有找到匹配的记录会raise an ActiveRecord::RecordNotFound
@episode = Episode.find_by!(slug: params[id])
end

进入rails console ,增加2条记录:

Episode.create(name: "Star Wars", slug: "test-1")
Episode.create(name: "Lord of the Rings", slug: "test-2")

在浏览器地址栏输入了错误的网址episodes/text, (正确的是episodes/text-1或者text-2)

导致出现❌

在controller:

class EpisodesController <ApplicationController
before_action :set_episode, only: [:show, :edit, :update, :destroy] rescue_from ActiveRecord::RecordNotFound do |exception|
byebug //一个用于debug的gem中的方法,rails默认添加的
end
end

再刷新错误网页,然后看terminal的fservent_watch:

输入:

  1. exception查看❌提示的类
  2. params[:id]查看参数是什么
  3. c退出。

在controller中添加ActiveRecord::Rescuable::ClassMethods#erescue_from方法

加一个block,用于执行拯救:

  • 第一行对参数params[:id]再次进行模糊的搜索,并把可能的记录存在@episodes集合内。
  • 第二行渲染/search/show模版,并写一些提示信息给用户阅读
  • class EpisodesController <ApplicationController before_action :set_episode, only: [:show, :edit, :update, :destroy] rescue_from ActiveRecord::RecordNotFound do |exception| @episodes = Episode.where("slug LIKE ?", "%#{params[:id]}%") render "/search/show" end end

新增一个views/search/show.html.erb

<h3>很抱歉,您要访问的页面不存在!</h3>
<% if @episodes.any? %>
  <p>这里有一些相似的结果:</p>   <% @episodes.each do |episode| %>
   <div>
   <%= link_to episode.name, episode %>
   </div>
  <% end %>
<% else %>
<%= link_to "Check out all our episodes", episodes_path %>
<% end %>

进一步完善功能

# 把第一字符替换为空. \w指[a-zA-z0-9_]
params[:id].gsub(/^[\w-]/, '')
class EpisodesController <ApplicationController
before_action :set_episode, only: [:show, :edit, :update, :destroy] rescue_from ActiveRecord::RecordNotFound do |exception|
@query = params[:id].gsub(/^[\w-]/, '')
@episodes = Episode.where("name LIKE ? OR slug LIKE ?", "%#{@query}%", "%#{@query}%")
render "/search/show"
end
end

可以把recue_from放到一个单独的模块SearchFallback中:

把这个模块放入app/controllers/concern/search_fallback.rb中:

module SearchFallback
//因为included方法是ActiveSupport::Concern模块中的方法,所以extend这个模块,就能用included了
extend ActiveSupport::Concern
//当这个模块被类包含后,则:
included do
rescue_from ActiveRecord::RecordNotFound do |exception|
  @query = params[:id].gsub(/[^\w-]/, '')
   @episodes = Episode.where("name LIKE ? OR slug LIKE ?", "%#{@query}%", "%#{@query}%")
   @forum_threads = Episode.where("name LIKE ? OR slug LIKE ?", "%#{@query}%", "%#{@query}%")
   render "/search/show"
end
end
end

然后EpisodesController, 加上include SearchFallback

class EpisodesController < ApplicationController
include SearchFallback

rescue_from(*klasses, with:nil, &block)

营救Rescue在controller actions中产生raise的exceptions。

  • *klasses -一系列的exception classes 或者class names
  • with选项 -方法名或一个Proc对象。用于处理*klasses。
  • &block是可选的块。

无论是with,还是&block都接受一个参数exception.


(Go rails)使用Rescue_from(ActiveSupport:Rescuable::ClassMethods)来解决404(ActiveRecord::RecordNotFound)❌的更多相关文章

  1. rails中validates_confirmation_of验证方法无效的解决办法

    rails的model中提供了很多种自带的验证方法,validates_confirmation_of可以验证变量xxx和xxx_confirmation是否相等:这可以用于验证2遍输入的密码是否一致 ...

  2. rails数据库查询 N + 1 查询的解决办法

    schema.rb ActiveRecord::Schema.define(version: 20150203032005) do create_table "addresses" ...

  3. 3-30 flash(api),rescue_from(); logger简介

    ActionDispatch::Flash < Objec pass temporary primitive-types (String, Array, Hash) between action ...

  4. 有意练习--Rails RESTful(一)

    书要反复提及<哪里有天才>在说,大多数所谓的天才是通过反复刻意练习获得. 当你的练习时间达到10000几个小时后,.你将成为该领域的专家. 近期在学习rails怎样实现RESTful We ...

  5. rails自定义出错页面

    一.出错类型 Exception ActionController::UnknownController, ActiveRecord::RecordNotFound ActionController: ...

  6. Mac上安装与更新Ruby,Rails运行环境

    Mac安装后就安装Xcode是个好主意,它将帮你安装好Unix环境需要的开发包,也可以独立安装command_line_tools_for_xcode 1.安装RVM RVM:Ruby Version ...

  7. Rails - ActiveRecord的where.not方法详解(copy)

    [说明:资料来自https://robots.thoughtbot.com/activerecords-wherenot] ActiveRecord's where.not Gabe Berke-Wi ...

  8. Ruby Rails学习中:注册表单,注册失败,注册成功

    接上篇 一. 注册表单 用户资料页面已经可以访问了, 但内容还不完整.下面我们要为网站创建一个注册表单. 1.使用 form_for 注册页面的核心是一个表单, 用于提交注册相关的信息(名字.电子邮件 ...

  9. Ruby Rails学习中:User 模型,验证用户数据

    用户建模 一. User 模型 实现用户注册功能的第一步是,创建一个数据结构,用于存取用户的信息. 在 Rails 中,数据模型的默认数据结构叫模型(model,MVC 中的 M).Rails 为解决 ...

随机推荐

  1. topcoder srm 712 div1

    problem1 link 将$a_{0},a_{1},...,a_{n-1}$看做$a_{0}x^{0}+a_{1}x^{1}+...+a_{n-1}x^{n-1}$.那么第一种操作相当于乘以$1+ ...

  2. CentOS7使用命令连接网络配置

    背景 在安装完CentOS7无桌面的情况下,无法使用桌面图标连接,如下图所示,这时我们需要在配置文件中配置网络连接信息. 步骤 查看ip地址:ifconfig PS:在未连接网络之前,我们是查看不到i ...

  3. 配置Jenkins 实现自动发布maven项目至weblogic(svn+maven+weblogic12c)

    Jenkins安装完成之后,需要我们对其配置,然后才可以实现自动部署项目. 前提 防火墙开放weblogic的7001端口 Linux(CentOS):firewall-cmd --zone=publ ...

  4. 连号区间数|2013年蓝桥杯B组题解析第十题-fishers

    连号区间数 小明这些天一直在思考这样一个奇怪而有趣的问题: 在1~N的某个全排列中有多少个连号区间呢?这里所说的连号区间的定义是: 如果区间[L, R] 里的所有元素(即此排列的第L个到第R个元素)递 ...

  5. 【做题】arc078_f-Mole and Abandoned Mine——状压dp

    题意:给出一个\(n\)个结点的联通无向图,每条边都有边权.令删去一条边的费用为这条边的边权.求最小的费用以删去某些边使得结点\(1\)至结点\(n\)有且只有一条路径. \(n \leq 15\) ...

  6. (转)JPA & Restful

    参考博客: JPA: https://www.jianshu.com/p/b6932740f3c0 https://shimo.im/docs/zOer2qMVEggbF33d/ Restful: h ...

  7. IDEA新建一个Project和Module的问题

  8. ES6中新增的数组知识

    JSON数组格式转换 JSON的数组格式就是为了前端快速的把JSON转换成数组的一种格式,我们先来看一下JSON的数组格式怎么写. let  json = {     '0': 'xzblogs', ...

  9. (转载)Unity3D连接本地或局域网MySQL数据库

    准备工作: 1.打开 Unity3D 安装目录,到这个路径下 Editor > Data > Mono > lib > mono > 2.0 拷贝出下图的五个动态链接库, ...

  10. k8s2

    1.主节点与子节点如何沟通,交互 apiServer <==> kublet 2. pod之间如何共享, 使用volumn(数据卷 ) kube-proxy 和 service 配置好网络 ...