以前作的上传,在糙了,所以在用户体验上改进一下。
同时,结合DJANGO作定位上传。
这其中分两步进行,第一次上传到TMP目录下,
第二次,将TMP下的文件转移到标准目录下。
form.py
file_path = forms.CharField( required=True, label=u"上传文件", widget=forms.TextInput( attrs={ 'rows': 2, 'class': 'uk-width-1-2', } ), )
upload.html
{# file_path #}{ { form.file_path.label_tag }} {% for error in form.file_path.errors %} { { error }} {% endfor %}{# 将文件拖拽至此或者 #}
views.py
def fileupload(request): files = request.FILES.getlist('files[]') file_name_list = [] for f in files: destination = 'd:/temp/' # windows # destination = '/tmp/' # linux if not os.path.exists(destination): os.makedirs(destination) with open(destination+f.name, 'wb+') as destination: for chunk in f.chunks(): destination.write(chunk) file_name_list.append(f.name) return render_to_json_response(','.join(file_name_list))
然后,在作总体提交时,就可以用file_path = form.cleaned_data['file_path']取出第二次送到后端的文件名称了。
看: