我有这个哈希
"animal_images_attributes"=>{
"0"=>{
"image_cache"=>"",
"image"=>#<ActionDispatch: : Http: : UploadedFile: 0x0000000673efa0@tempfile=#<Tempfile: /tmp/RackMultipart20140930-17710-u3g1hm>,
@original_filename="bryony_portfolio.png",
@content_type="image/png",
@headers="Content-Disposition: form-data; name=\"animal[animal_images_attributes][0][image]\"; filename=\"bryony_portfolio.png\"\r\nContent-Type: image/png\r\n">,
"_destroy"=>"false"
},
"1412109521172"=>{
"image_cache"=>"",
"image"=>#<ActionDispatch: : Http: : UploadedFile: 0x0000000673ea78@tempfile=#<Tempfile: /tmp/RackMultipart20140930-17710-1670i9p>,
@original_filename="vandals_portfolio.png",
@content_type="image/png",
@headers="Content-Disposition: form-data; name=\"animal[animal_images_attributes][1412109521172][image]\"; filename=\"vandals_portfolio.png\"\r\nContent-Type: image/png\r\n">,
"_destroy"=>"false"
}
}
}
我想迭代每个图像并获取“图像”的文件大小,如果文件大小超过1mb我想有一个图像(密钥)的标识符,表示它已经结束。到目前为止我已经构建了这个
class AnimalsController < ApplicationController
before_action :max_file_size, only: [:create]
def max_file_size
image = params[:animal][:animal_images_attributes]
image.each do |k,v|
img_cache = v["image_cache"]
img = v["image"]
if img
tempfilepath = img.tempfile.path
file_size = File.size(tempfilepath)
if file_size > 1.megabytes
@largeImage = true
else
@largeImage = false
end
end
end
end
end
但这是将值true赋给所有图像而不是实际在迭代中的图像..我希望这是有意义的
如果我这样做
if file_size > 1.megabytes
ap(file_size)
end
我把它输出到控制台
1718186
1141251
这是正确的,因为在我的例子中我添加了超过1MB的两个图像。
所有这一切的想法是基本上说每个超过1mb的图像然后有条件地添加这个类
<%= f.fields_for :animal_images do |build| %>
<div class="<%= 'large_image' if @largeImage = true %> form-group has-feedback">
<% end %>
任何帮助都会对此感到欣慰,因为它会造成一些绊脚石
答案 0 :(得分:0)
这将返回超过1兆字节的所有图像。
big_images = images.select(&:image).select { |_k, image| File.size(image["image"].tempfile.path) > 1.megabyte }