Simplify Form Submission In Django April 16, 2024 Post a Comment I have a form in Django where the user can submit a file/ an image/ text in a single form as follows. Solution 1: A nicer approach could be use the get, in case of the key is not present in the dictionaty, will return the second argument without raise an exception here a nice answer on this topic -> linkdefmessages(request, room_id): if request.method == 'POST': form = UploadFileForm(request.POST, request.FILES) # replace UploadFileForm with your form nameif form.is_valid(): # just check if the form is valid, i don't know if you are doing it before img = request.FILES.get('image', None) text = request.FILES.get('text', None) file = request.FILES.get('file', None) path = request.POST['next'] fields = [img, file, text] ChatMessage.objects.create( room=room, user=mfrom, text=text, document=file, image=img ) else: return render(request, 'upload.html', {'form': form}) CopyIt's a draft, but of course is always a good approach to redirect the user back to the form in case the form is not valid Baca JugaHow To Carry String With Spaces Through A Html Form, Using FlaskDjango Using Ajax With Forms, ViewsScipy Fmin_slsqp Error "failed In Converting 8th Argument `g' Of _slsqp.slsqp To C/fortran Array" Share You may like these postsDifference Between Local Variable And Global VariablePandas Dataframe Growing In Rows And ColumnsHow To Add "pytube" Downloading Info To Tqdm Progress Bar?Dynamically Import Module From Memory In Python 3 Using Hooks Post a Comment for "Simplify Form Submission In Django"
Post a Comment for "Simplify Form Submission In Django"