gpt4 book ai didi

python - django 图片文件上传的MultiValueDictKeyError

转载 作者:太空宇宙 更新时间:2023-11-03 12:47:58 24 4
gpt4 key购买 nike

我花了很多时间试图解决这个问题——阅读 Django 文档,查阅表格但没有得到令人满意的结果。所以请耐心等待我。我正在尝试从我的 html 模板上传图像文件。这是我的 html 表单

<form id="tryOnPageForm" method="POST" enctype="multipart/form-data" action="/dummy/{{frame.slug}}/">
{% csrf_token %}
<input type="file" name="uploadFromPC" id="uploadFromPC" class="myButton" title="Upload From PC" value= "Upload from PC" onchange="uploadPC()" style="float:left;">
<input type="submit" id="Submit" class="myButton" value= "Done" style="display:none"><br><br>

</form>

文件上传正常,我能够在 HTML 中看到上传的图像文件。

在我的 views.py 中,

def upload_image(request, frameslug):

frame= v.objects.get(slug=frameslug)
if request.method == 'POST':
form = ImageUploadForm(request.POST, request.FILES)
print "FILES", request.FILES
if form.is_multipart():
save_file(request.FILES['image'])
return HttpResponseRedirect('Successful')
else:
return HttpResponse('Invalid image')
else:
form = ImageUploadForm()
return render_to_response('dummy.html', {'form': form})


def save_file(file, path=''):
''' Little helper to save a file
'''
filename = file._get_name()
fd = open('%s/%s' % (MEDIA_ROOT, str(path) + str(filename)), 'wb')
for chunk in file.chunks():
fd.write(chunk)
fd.close()

在我的 forms.py 中,

from django import forms
class ImageUploadForm(forms.Form):
image = forms.ImageField(label='Select a file', help_text='max. 20 megabytes')

当我运行我的代码时出现这个错误

MultiValueDictKeyError at /dummy/fr1234/

my from my view.py 中的打印语句显示了这一点

FILES <MultiValueDict: {u'uploadFromPC': [<InMemoryUploadedFile: model4.jpg (image/jpeg)>]}>

这是回溯

Traceback:
File "C:\Python27\lib\site-packages\django\core\handlers\base.py" in get_response
112. response = wrapped_callback(request, *callback_args, **callback_kwargs)
File "D:\Work-Backup\LiClipse Workspace\vTryON_DJango_Integration\vTryON\views.py" in upload_image
189. save_file(request.FILES['image'])
File "C:\Python27\lib\site-packages\django\utils\datastructures.py" in __getitem__
301. raise MultiValueDictKeyError(repr(key))

Exception Type: MultiValueDictKeyError at /dummy/fr1234/
Exception Value: "'image'"

我知道 enctype 应该是 multipart/form-data 因为我已经在教程中阅读过它。另外,我没有在我的 models.py 中使用任何字段来存储上传的图像。相反,我想直接将它保存到 MEDIA_URL 位置。这可能是个问题吗?请帮忙。这让我犹豫了很长时间。提前致谢。

最佳答案

我能够解决这个问题(在花了很多时间和 friend 的帮助下...)

我认为错误

异常类型:/dummy/fr1234/处的 MultiValueDictKeyError
异常值:“'image'”

是因为request.FILES无法从用户输入中获取上传的图片,原因是我提供的用户输入文件的名称是错误的!!

它应该是 request.FILES['uploadFromPC'] 而不是 request.FILES['image'] 因为这是我保存在我的文件中的名称HTML。

<input type="file" name="uploadFromPC" id="uploadFromPC" class="myButton" title="Upload From PC" value= "Upload from PC" onchange="uploadPC()" style="float:left;">

那是个愚蠢的错误,修复它浪费了很多时间.. :(

.. 但是你,很好的学习。

我希望这对正在尝试做类似事情的其他人有所帮助。虽然,如果有人可以在这里向我解释 forms.py 的用法,我会很高兴。是否可以在没有 forms.py 的情况下进行用户上传?

关于python - django 图片文件上传的MultiValueDictKeyError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25034684/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com