class ApplicationController < ActionController::Base
protect_from_forgery
helper_method :bbb
def bbb
@bbb
end
def bbb=(b)
@bbb = b
end
end
class SubController < ApplicationController
def show
bbb = 11111
end
end
访问 SubController 中的 show 方法,在模版 application.html.erb 中使用 调用 bbb 返回为 nil