I have form with flask-wtf for upload some image, also file field can be multiple
my form:
class ComposeForm(Form):
attachment = FieldList(FileField(_('file')), _('attachment'))
add_upload = SubmitField(_('Add upload'))
my view:
if form.validate_on_submit():
if form.add_upload.data:
form.attachment.append_entry()
return render_template('mailbox/compose.html', form=form)
else:
form.attachment.append_entry()
my template :
<form method="POST" enctype="multipart/form-data" action=".">
{% for field in form %}
{{field}}
{% endfor %}
</div>
when i use enctype="multipart/form-data" in form append_entry doesn't work, only append one more field
again click on add_upload but after refresh i have agen only one field ( not two )
how i can fix this? there is no error, i think because of enctype wtform forget how many field i have to add more :D
append_entry– tkone Jan 3 at 16:48append_entrynot work? What happens when you execute that function? What is the result of your code? – tkone Jan 4 at 9:37append_entry()? what is appending? – tkone Jan 10 at 19:03