我使用Django谷歌應用程序引擎。我正在嘗試上傳圖片。谷歌應用程序引擎與Django上傳文件錯誤
我犯了一個形式
<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>')
它讓我在調試會話
Exception Type: NotImageError
Exception Value:Empty image data.
爲什麼這個錯誤?????