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

link|improve this question

76% accept rate
What is the error message you receive when you try to do append_entry – tkone Jan 3 at 16:48
@tkone there is no error, in simple form remember count of fields but in multipart every time only appended form has one field – Efazati Jan 4 at 5:01
Well how does 'append_entry not work? What happens when you execute that function? What is the result of your code? – tkone Jan 4 at 9:37
@tkone add more description in edit – Efazati Jan 4 at 13:20
i still don't see what happens when you run this code. what are you expecting and what are you getting? your call to append_entry()? what is appending? – tkone Jan 10 at 19:03
feedback

1 Answer

You call to append_entry is missing it's data.

From the Documentation:

append_entry([data])

Create a new entry with optional default data.

Entries added in this way will not receive formdata however, and can only receive object data.

If you're trying to get the data that was submitted on the form, you might try to use pop_entry. Or at least doing some debugging and seeing what form.attachment.entries looks like. Does it contain values? What happens when you iterate through those values?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.