Rails - paperclip - Multiple photo upload not saving
问题 I'm trying to make a create product page in rails. This includes adding multiple images and text fields. I have one model for products and one for photos. I'm using the paperclip gem for photo upload. But I get no picture when I view product page. Photos are not being saved to database. P.S. I use HAML. app/views/products/show.html.haml %b Name = @product.name %br %b Description = @product.description %br - @product.photos.each do |photo| = image_tag photo.image.url app/controllers/products