无法验证Rails 4(carrierwave)中的关联

时间:2016-01-02 20:59:49

标签: ruby-on-rails

我正在做一些练习工作,我偶然发现了一个小问题。我正在尝试访问通过类别部分上传的图像。在CategoryController show方法中,我似乎无法访问图像。

错误:

undefined method 'images' for #<Category::ActiveRecord_Relation:0x9350b20>

代码:类别控制器

def show
  @category = Category.find params[:id]
  @categories = Category.all
  @images = @categories.images
end

console log output

1 个答案:

答案 0 :(得分:0)

  

NoMethodError:在接收器上调用方法时引发   没有定义

类别是一个类。它没有图像方法。我想像Category.first.images这样的类别的实例会有它。