【发布时间】:2017-11-25 07:46:55
【问题描述】:
我是编码新手,所以我很不擅长。我使用 Django 作为框架。目前这是我用于用户输入的 html 代码。
<html>
<head>
<title>uploader</title>
<style>
h1 {
font-size: 2em;
font-weight: bold;
color: #777777;
text-align: center
}
table {
margin: auto;
}
a {
text-decoration: none
}
</style>
</head>
<body>
<h1>
{{what}}
<h3><p style="text-align: left;text-decoration: none;"><a href="{% url 'home' %}">Back</p></a></h3>
</h1>
<hr>
<table>
<tr>
<td>
<form action="upload/" method="POST" enctype="multipart/form-data">
{% csrf_token %}
<fieldset>
Category of the device:<br>
<input type="text" name="category" value="" required id="cat">
<br>
Model:<br>
<input type="text" name="model" value="" required id="mod">
<br>
<input type="submit" value="Upload File" class="submit" name="submit" />
<input type="file" name="file"/>
</fieldset>
</form>
</td>
</tr>
</table>
</body>
</html>
views.py
def home(request):
return render(request, 'index.html', {'what':'Upload Files'})
def upload(request):
try:
if request.method == 'POST' and request.FILES['file']:
try:
myfile = request.FILES['file']
category = request.POST['category']
model = request.POST['model']
validate_file_extension(myfile)
fs = FileSystemStorage(location='uploaded/')
filename = request.FILES['filename'].name
handle_uploaded_file(request.FILES['file'], str(request.FILES['file']))
modified_name = "{}_{}_{}".format(filename, category, modle)
filename = fs.save(modified_name, myfile)
return redirect("/success")
except:
return redirect("/unsuccessful")
except:
return redirect("/upload")
def handle_uploaded_file(file, filename):
if not os.path.exists('uploaded/'):
os.mkdir('uploaded/')
with open('uploaded/' + filename, 'wb+') as destination:
for chunk in file.chunks():
destination.write(chunk)
如何重命名用户上传的文件,以便将他们输入的文本放在文件名后面,并带有“_”。
例如:
filename = myfile
category = camera
model = XYZ123
文件应重命名为“myfile_camera_XYZ123”。
【问题讨论】:
-
您必须在视图中执行此操作。可以发一下吗?
-
当然!我已经编辑过了
-
表单是否与模型相关联?
-
不,不是。
标签: python html django upload rename