谁能帮我在这里发现我的问题:
我正在尝试使用 appengine 和 django 实现文件上传例程,但遇到了 MultiValueDictKeyError 错误。该文件似乎没有从网页传输到服务器。
其中一部分是学习练习,所以我不想使用 djangoform 为我处理数据。
我正在使用 SDK 版本 1.1.8、django 版本 1.1.0 alpha 和 google-appengine-django r68
我的 html 看起来像这样:
<form method="POST" action="." enctype="multipart/form-data">
Title: <input type="text" name="title"/>
Text: <input type="text" name="txt"/>
Image: <input type="file" name="imgfile"/>
<input type="submit"/>
</form>
我的蟒蛇看起来像这样:
def 索引(请求):
if request.POST:
newtxt = TestModel()
newtxt.title = request.POST.get('title', '')
newtxt.txt = request.POST.get('txt', '')
blFileData = request.FILES['imgfile'].read()
if blFileData:
newtxt.img = blFileData
newtxt.put()
return render_to_response('index.html', ({'filestore': query,}))
错误如下所示:
MultiValueDictKeyError 在 /
“在”中找不到密钥“imgfile”
请求方法:POST 请求 URL: http://localhost:8000/ 异常类型:MultiValueDictKeyError 异常值:“Key 'imgfile' not found in” 异常位置:/Users/david/Sites/testsite/myapp/views.py in index ,第 19 行 Python 可执行文件:/Library/Frameworks/Python.framework/Versions/2.5/Resources/Python.app/Contents/MacOS/Python Python 版本:2.5.2
/Users/david/Sites/testsite/myapp/views.py in index blFileData = request.FILES['imgfile'].read() ... ▼ Local vars Variable Value newtxt
TestModel(**{'txt': u' World', 'img': 无, 'title': u'Hello'}) 请求, POST:, COOKIES:{}, META:{'APPLICATION_ID': 'google-app-engine-django', 'AUTH_DOMAIN': 'gmail.com','CONTENT_LENGTH':'21','CONTENT_TYPE':'application/x-www-form-urlencoded','CURRENT_VERSION_ID':'1.1','GATEWAY_INTERFACE':'CGI/1.1','HTTP_ACCEPT ': 'text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5', 'HTTP_ACCEPT_LANGUAGE': 'en', 'HTTP_CONNECTION': '保持活动状态', 'HTTP_HOST': 'localhost:8000', 'HTTP_REFERER': ' http://localhost:8000/', 'HTTP_USER_AGENT': 'Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.27.1 (KHTML, like Gecko) Version/3.2.1 Safari/525.27.1', 'PATH_INFO': u'/', 'PATH_TRANSLATED': u'/Users/david/Sites/testsite/main.py', 'QUERY_STRING': '', 'REMOTE_ADDR': '127.0.0.1', 'REQUEST_METHOD': 'POST', 'SCRIPT_NAME': u'', 'SERVER_NAME': 'localhost', 'SERVER_PORT': '8000', 'SERVER_PROTOCOL': 'HTTP/1.0', 'SERVER_SOFTWARE': 'Development/1.0', 'TZ': 'UTC ', 'USER_EMAIL': '', 'wsgi.errors': ', mode 'w' at 0x130b0>, 'wsgi.input': , 'wsgi.multiprocess': False, 'wsgi.multithread': False, 'wsgi .run_once': True, 'wsgi.url_scheme': 'http', 'wsgi.version': (1, 0)}>
想法?谢谢,大卫