我想将我用回形针上传的图像保存到特定路径。我希望将图像保存在 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