我正在做一些练习工作,我偶然发现了一个小问题。我正在尝试访问通过类别部分上传的图像。在CategoryController show
方法中,我似乎无法访问图像。
错误:
undefined method 'images' for #<Category::ActiveRecord_Relation:0x9350b20>
代码:类别控制器
def show
@category = Category.find params[:id]
@categories = Category.all
@images = @categories.images
end
答案 0 :(得分:0)
NoMethodError:在接收器上调用方法时引发 没有定义
类别是一个类。它没有图像方法。我想像Category.first.images
这样的类别的实例会有它。