Login

Get boolean value from request send by Ajax

Author:
zalun
Posted:
July 1, 2009
Language:
Python
Version:
1.0
Score:
1 (after 1 ratings)

gets the value from request and returns it's boolean state

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
	
def get_boolean_from_request(request, key, method='POST'):
	" gets the value from request and returns it's boolean state "
	value = getattr(request, method).get(key, False)
	
	if value == 'False' or value == 'false' or value == '0' or value == 0:
		value = False
	elif value: 
		value = True
	else:
		value = False
		
	return value	

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 2 months, 2 weeks ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 2 months, 3 weeks ago
  3. Serializer factory with Django Rest Framework by julio 9 months, 2 weeks ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 10 months, 1 week ago
  5. Help text hyperlinks by sa2812 11 months ago

Comments

SmileyChris (on July 1, 2009):

is_true = lambda value: bool(value) and value.lower() not in ('false', '0')

is_true(request.POST.get(key))

#

mesuutt (on July 17, 2013):

I am new to django. Where should I keep this method for use everywhere ? Where is the best file for the method ?

#

Please login first before commenting.