views:

57

answers:

3
form = AddItemForm(request.POST, request.FILES)

if form.is_valid()

   do_stuff

return render_to_response(blah.html, {'form':form})

Now form will have the error information along with the original values of the fields, but it does not retain a selected file How do I keep the selected file if the form fails validation?

A: 

Django will only save the file to disk on its own if you are using a modelForm and you successfully save a new instance of that model which has a fileField.

In your case what you have to do is get the file from the request.FILES dictionary, and save it to disk on your own. It should look something like this.

input_file = request.FILES['fileformfieldname']
new_file = open('/path/to/file.xxx')
new_file.write(input_file.read())

Now that you have the file saved to disk, you just have to remember the path to the file, so you can open it again when the user resubmits the failed form.

Apreche
A: 

The problem with what you want to do is that, for security reasons, browsers will not allow a file input box to have a pre-selected value on page load. This is true even if it is simply preserving the value from a previous instance of the same page. There is nothing Django can do to change this.

If you want to avoid asking the user to re-select and re-upload the file, you will need to save the uploaded file even when validation fails, and then replace the file input field with something to indicate that you already have the data. You would also probably also want a button that runs some JavaScript to re-enable the file field if the user wants to put in a different file. I don't think Django comes with any machinery for this, so you'll have to code it yourself.

Walter Mundt
+1  A: 

Bit tricky but here is the logic.

  1. Along with your HTML Input File, have another hidden field.
  2. Write some JavaScript to hold selected file path + name in this hidden field.
  3. During page load, Your JavaScript should check hidden field's value and set that to File field, if it has any.

On first load, hidden field is empty, so nothing happens.
On selection of file, it saves path+name in hidden field.
On second load, hidden field is not empty, so it will set file path

This way, all the dirty work happens in Browser, and Unless you have valid form, you don't have to save the file on server.

Narendra Kamma