上接簡單的 Django 項目 https://www.cnblogs.com/klvchen/p/10155538.html 這裡需要註意兩個地方: 表單提交方式需要是 form 添加一個屬性為 在 index.html 加入input 標簽 修改 views.py 成功上傳文件 ...
上接簡單的 Django 項目 https://www.cnblogs.com/klvchen/p/10155538.html
這裡需要註意兩個地方:
- 表單提交方式需要是
post
- form 添加一個屬性為
enctype="multipart/form-data"
在 index.html 加入input 標簽
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>hello worlds</h1>
<form action="/klvchen/" method="post" enctype="multipart/form-data">
<p><input type="file" name="upload"></p>
<p><input type="submit" value="submit"></p>
</form>
</body>
</html>
修改 views.py
from django.shortcuts import render
def klvchen(req):
print("前端數據: ", req.POST)
print("file:", req.FILES)
for item in req.FILES:
obj = req.FILES.get(item) # 獲取要寫入的文件
filename = obj.name # 獲取文件名
f = open(filename, 'wb')
for line in obj.chunks(): # 分塊寫入
f.write(line)
f.close()
return render(req, "index.html")
成功上傳文件