Loading docs/topics/http/file-uploads.txt +2 −2 Original line number Diff line number Diff line Loading @@ -201,7 +201,7 @@ corresponding :class:`~django.db.models.FileField` when calling return HttpResponseRedirect('/success/url/') else: form = ModelFormWithFileField() return render('upload.html', {'form': form}) return render(request, 'upload.html', {'form': form}) If you are constructing an object manually, you can simply assign the file object from :attr:`request.FILES <django.http.HttpRequest.FILES>` to the file Loading @@ -221,7 +221,7 @@ field in the model:: return HttpResponseRedirect('/success/url/') else: form = UploadFileForm() return render('upload.html', {'form': form}) return render(request, 'upload.html', {'form': form}) ``UploadedFile`` objects Loading Loading
docs/topics/http/file-uploads.txt +2 −2 Original line number Diff line number Diff line Loading @@ -201,7 +201,7 @@ corresponding :class:`~django.db.models.FileField` when calling return HttpResponseRedirect('/success/url/') else: form = ModelFormWithFileField() return render('upload.html', {'form': form}) return render(request, 'upload.html', {'form': form}) If you are constructing an object manually, you can simply assign the file object from :attr:`request.FILES <django.http.HttpRequest.FILES>` to the file Loading @@ -221,7 +221,7 @@ field in the model:: return HttpResponseRedirect('/success/url/') else: form = UploadFileForm() return render('upload.html', {'form': form}) return render(request, 'upload.html', {'form': form}) ``UploadedFile`` objects Loading