我越来越:undefined method 'important_method' for #<Class:0xbee7b80>
当我打电话时:User.some_class_method
和:
# models/user.rb
class User < ActiveRecord::Base
include ApplicationHelper
def self.some_class_method
important_method()
end
end
# helpers/application_helper.rb
module ApplicationHelper
def important_method()
[...]
end
end
我究竟做错了什么?我怎样才能避免这个问题?