class ApplicationController < ActionController::Base
def func
end
end
class BaseController < ApplicationController
def func(a)
end
end
class MyController < BaseController
before_filter :func # I want this to call ApplicationController::func
end
在这种情况下, BaseController::func 被调用。我如何调用 ApplicationController 的?