Google App Engineでdjangoを使用しています。私は画像をアップロードしようとしています。Googleアプリケーションエンジンのdjangoアップロードファイルエラー
私は、フォームのデバッグセッション
Exception Type: NotImageError
Exception Value:Empty image data.
WHYで私は、このエラーを与えて
<form enctype="multipart/form-data" action="addImage" method="post">
<p>Title of the Image:
<input type="text" name="title" /></p>
<p>Please select image to upload:
<input type="file" name="img" required="True"/></p>
<p><input type="submit" value="Upload" /></p>
</form>
このビューへのマッピングを
def addImage(request):
image = Image()
image.title = request.POST.get("title")
img = images.resize(request.POST.get('img'),50,50)
image.blob = db.Blob(img)
image.put()
return HttpResponse('<html><head><meta HTTP-EQUIV="REFRESH" content="2; url=/"></head><body>One item added successfuly </body></html>')
を作っ?????