在我现有的 Rails 项目中,我创建了图片模型。
class Picture < ActiveRecord::Base
belongs_to :user
end
然后,在将 Ckeditor 添加到我的项目时,我必须像这样在 ckeditor 目录下创建另一个图片模型
class Ckeditor::Picture < Ckeditor::Asset
...
end
在我的用户模型中,我有这个关联类 User < ActiveRecord::Base has_many :pictures end
但是,我不能使用user.pictures
. 每当我发表此声明时,都会出现以下错误:
Expected /home/xxx/app/models/ckeditor/picture.rb to define Picture
我该如何解决这个问题?