1

我想将我用回形针上传的图像保存到特定路径。我希望将图像保存在 ruby​​ on rails 应用程序的 app/assets/image 目录中,但它们似乎没有进入

这就是 config/environments/development.rb 中的路径

config.paperclip_defaults = {
:url  => ":rails_root/app/assets/images/:attachment/:id/:style/:filename",    
:path => "/:class/:attachment/:id/:style/:basename.:extension"
}

我非常感谢您能给我的任何建议或帮助,如果您想了解更多信息,我会尽快提出。

这是来自 product_images 的 def create ,显示了我如何创建图像并保存它

def create
 @product_image = ProductImage.new(params[:product_image])
 @product = @product_image.product

 if @product_image.save
  @product.product_image_id = @product_image.id
  @product.save

  redirect_to @product_image, notice: 'Product image was successfully created.'         
 else
  render :template => "products/edit"       
 end    
end
4

1 回答 1

0

在您访问回形针的模型中,将此代码放在其中,而不是放在 development.rb 文件中。

 has_attached_file :model_name,
 :path => ":attachment/:id/:style/:basename.:extension"
于 2013-10-11T15:18:21.880 回答