钩子方法 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 方法还有很多, 今天暂时先写这么多
评论区