📎 ROR: before_action / skip_before_action的区别
假设我在ApplicationController中设置了一个 before_action, 那么其他 controller(ApplicationController 的子类) 中的 action 在被执行前都会去执行父类中的 before_action, 如果子类中的某个 action 不想在被执行前去执行父类中的 before_action, 那么就可以使用skip_before_action.
class ApplicationController < ActionController::Base
before_action :app_filter
private
def app_filter
end
end
class StaticPagesController < ApplicationController
skip_before_action :app_filter
end