1👍
The first part of your problem has nothing to do with Ajax. That is simply not how you access form data. You need to check form.is_valid(), then access the data through
form.cleaned_data`.
Source:stackexchange.com
1👍
The first part of your problem has nothing to do with Ajax. That is simply not how you access form data. You need to check form.is_valid(), then access the data through
form.cleaned_data`.