【发布时间】:2013-11-13 18:25:25
【问题描述】:
我收到: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
我做错了什么?如何避免这个问题?
【问题讨论】:
标签: ruby-on-rails-3 model helpermethods