如何将myfile
表单字段设置为Dropzone.js上传区域?
forms.py
class TestForm(forms.Form):
title = forms.CharField(required=True)
myfile = FileField()
views.py
class ExampleView(FormView):
template_name = 'test.html'
form_class = TestForm
success_url = '/thanks/'
def form_valid(self, form):
print form.cleaned_data['title']
print form.cleaned_data['file']
return super(ExampleView, self).form_valid(form)
的test.html
<form method="post" action="/test-form/">
<input type="text" name="title" id="id_title">
<input type="submit" value="Save">
</form>
答案 0 :(得分:0)
好吧,我刚刚查看了dropzone网站,有几种不同的方式。
一种方法是配置paramName
选项:http://www.dropzonejs.com/#config-paramName
但看起来你可以添加文件字段,例如<input type="file" name="myfile" />
您需要在表单中添加class="dropzone"
。