Django çerçevesindeki form alanlarından değerleri nasıl alırım? Bunu şablonlarda değil görünümlerde yapmak istiyorum ...
Yanıtlar:
Bir görünümde bir form kullanmak bunu hemen hemen açıklar.
Bir görünümde bir formu işlemek için standart model şuna benzer:
def contact(request):
if request.method == 'POST': # If the form has been submitted...
form = ContactForm(request.POST) # A form bound to the POST data
if form.is_valid(): # All validation rules pass
# Process the data in form.cleaned_data
# ...
print form.cleaned_data['my_form_field_name']
return HttpResponseRedirect('/thanks/') # Redirect after POST
else:
form = ContactForm() # An unbound form
return render_to_response('contact.html', {
'form': form,
})
İstediğini al:
def my_view(request):
if request.method == 'POST':
print request.POST.get('my_field')
form = MyForm(request.POST)
print form['my_field'].value()
print form.data['my_field']
if form.is_valid():
print form.cleaned_data['my_field']
print form.instance.my_field
form.save()
print form.instance.id # now this one can access id/pk
Not: alana mevcut olduğu anda erişilir.
form['my_field'].value()
POST isteğinde form değerlerine erişmek için bu çok basit çözümü bulmam bir saatimi aldı . Bazı günler: |
Verilerinizi doğruladıktan sonra bunu yapabilirsiniz.
if myform.is_valid():
data = myform.cleaned_data
field = data['field']
Ayrıca django belgelerini okuyun. Harikalar.
Gönderi isteği gönderen formdan veri almak için bunu şu şekilde yapabilirsiniz
def login_view(request):
if(request.POST):
login_data = request.POST.dict()
username = login_data.get("username")
password = login_data.get("password")
user_type = login_data.get("user_type")
print(user_type, username, password)
return HttpResponse("This is a post request")
else:
return render(request, "base.html")
class ContactForm(forms.Form): my_form_field_name = forms.CharField()