侧边栏壁纸
博主头像
极客日记 博主等级

行动起来,活在当下

  • 累计撰写 93 篇文章
  • 累计创建 17 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

【Ruby on Rails】各种回调(钩子)方法

Jack.Jia
2022-03-24 / 0 评论 / 0 点赞 / 3 阅读 / 0 字

钩子方法 hook method(回调函数 callback)

我们在编程时,会发现有很多方法。

有几种方法,是比较特殊的方法。 它们存在的意义,往往跟过程相关。

rails 中的 hooks method.

controller 中的 hooks

 def edit
    @article = Article.find params[:id]
  end

  def update
    @article = Article.find params[:id]
    redirect_to articles_path
  end

  def destroy
    @article = Article.find params[:id]
    @article.destroy

    redirect_to articles_path
  end

上面 3 行代码,都是一样的:

@article = Article.find params[:id]

所以, rails 提供了 hook method: before_filter

class XXAction
  before_action :get_article, :only => [:edit, :update, :destroy]

  def edit
  end

  def update
    redirect_to articles_path
  end

  def destroy
    @article.destroy

    redirect_to articles_path
  end

  private
  def get_article
    @article = Article.find params[:id]
  end

end

ActiveRecord 中的 hooks.

class Count < ActiveRecord::Base

  before_save :say_hi

  # 这个方法是隐形的。 定义于: ActiveRecord::Base 中。
  def save
  end

  def say_hi
    puts "=== hihihi"
  end
end

其他 hook 方法还有很多, 今天暂时先写这么多

0

评论区