たとえば、一連の のすべてを組み合わせるにはどうすればよいTag.has_many :images, through: :taggings
ですTag
か?
もっと簡単なものがない限り、これにまつわる何か:
images = ???
Tag.where("name in (?)", tag_params).each do |tag|
images = images.merge(tag.images)
end
たとえば、一連の のすべてを組み合わせるにはどうすればよいTag.has_many :images, through: :taggings
ですTag
か?
もっと簡単なものがない限り、これにまつわる何か:
images = ???
Tag.where("name in (?)", tag_params).each do |tag|
images = images.merge(tag.images)
end