我正在按照本教程在我的 rails 应用程序中添加用户之间的消息传递功能,但在我的User
模型中出现错误。
class User < ActiveRecord::Base
has_mailbox
end
这给了我以下错误:
undefined local variable or method `has_mailbox' for #<Class:0xb60f6f84>
有任何想法吗?
我正在按照本教程在我的 rails 应用程序中添加用户之间的消息传递功能,但在我的User
模型中出现错误。
class User < ActiveRecord::Base
has_mailbox
end
这给了我以下错误:
undefined local variable or method `has_mailbox' for #<Class:0xb60f6f84>
有任何想法吗?