手動でファイルをアップロードする場合、ファイルをモデルに保存する前に最終的な場所に配置する必要がありますか? または、モデルはある時点でファイルを移動しますか? 自分で配置する必要がある場合、なぜupload_to
モデル フィールドにパラメータが必要なのですか? upload_to
それは、私がそれをコピーするために使用しているパラメーターとロジックとのパリティを維持する必要があるようです。
混乱しているだけだと思います。誰かが私がこれを正しく行うのを手伝ってもらえますか?
私のフォームは、Web から画像の URL を取得します。
class ProductForm(ModelForm):
main_image_url = forms.URLField()
# etc...
私のビューはそれを取得してチェックし、サムネイルを作成します。
main_img_temp = NamedTemporaryFile(delete=True)
main_img_temp.write(urllib2.urlopen(main_image_url).read())
main_img_temp.flush()
img_type = imghdr.what(main_img_temp.name)
if not img_type:
errors = form._errors.setdefault("main_image_url", ErrorList())
errors.append(u"Url does not point to a valid image")
return render_to_response('add_image.html', {'form':form}, context_instance=RequestContext(request))
# build a temporary path name
filename = str(uuid.uuid4())
dirname = os.path.dirname(main_img_temp.name)
full_size_tmp = os.path.join(dirname, filename+'_full.jpg')
thumb_size_tmp = os.path.join(dirname, filename+'_thumb.jpg')
shutil.copy2(main_img_temp.name, full_size_tmp)
shutil.copy2(main_img_temp.name, thumb_size_tmp)
# build full size and thumbnail
im = Image.open(full_size_tmp)
im.thumbnail(full_image_size, Image.ANTIALIAS)
im.save(full_size_tmp, "JPEG")
im = Image.open(thumb_size_tmp)
im.thumbnail(thumb_image_size, Image.ANTIALIAS)
im.save(thumb_size_tmp, "JPEG")
# close to delete the original temp file
main_img_tmp.close()
### HERE'S WHERE I'M STUCK. This doesn't move the file... ####
main_image = UploadedImage(image=full_size_tmp, thumbnail=thumb_size_tmp)
main_image.save()
私のモデルには、基本的なフィールドを持つ UploadedImage モデルがあります。
class UploadedImage(models.Model):
image = models.ImageField(upload_to='uploads/images/%Y/%m/%d/full')
thumbnail = models.ImageField(upload_to='uploads/images/%Y/%m/%d/thumb/')