我正在拼命地尝试使用 Django 进行非常简单的文件上传,而(目前)不打扰模板和 co。
我的 HTML 是:
<form
id="uploader"
action="bytes/"
enctype="multipart/form-data"
method="post"
>
<input type="file" name="uploaded"/>
<input type="submit" value="upload"/>
</form>
我的 Python 是(知道它是一个 POST):
if path=="bytes/":
if 'uploaded' in request.FILES:
return HttpResponse("you uploaded a file")
else:
return HttpResponse("did not get the file")
我不明白为什么我总是收到“没有得到文件”的消息......
谁能帮帮我,好吗???