我的 Django 网站上有一个使用他们的表单的小文件上传系统。不幸的是,由于它直接从 django 表单中获取,我无法对其进行格式化,或者根本无法更改“选择文件”按钮。由于一段代码是 1000 字,这是让我无法编辑的代码片段 -
蟒蛇——
class UploadFileForm(forms.Form):
file = forms.FileField()
~
form = UploadFileForm()
template = loader.get_template('file_upload.html')
context = Context({ 'user': request.user, 'no_header': 'True', 'form' : form, 'applicant' : Applicant.objects.get(act_code = code)})
和 html -
<form name="upload" enctype="multipart/form-data" action="/file_upload/{{ object.act_code }}/{{ object.email }}/" method="post" style="padding:20px; margin:5px;" >
{{ form }}
<br/><br/><input type="submit" value="Upload" />
</form>
无论如何要这样做?谢谢。