मैं आने वाली JSON / Ajax अनुरोधों को Django / पायथन के साथ संसाधित करने का प्रयास कर रहा हूं।
request.is_ajax()
है True
अनुरोध पर, लेकिन मुझे नहीं पता कि जहां पेलोड JSON डेटा के साथ है।
request.POST.dir
इसमें ये शामिल हैं:
['__class__', '__cmp__', '__contains__', '__copy__', '__deepcopy__', '__delattr__',
'__delitem__', '__dict__', '__doc__', '__eq__', '__ge__', '__getattribute__',
'__getitem__', '__gt__', '__hash__', '__init__', '__iter__', '__le__', '__len__',
'__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__',
'__setattr__', '__setitem__', '__str__', '__weakref__', '_assert_mutable', '_encoding',
'_get_encoding', '_mutable', '_set_encoding', 'appendlist', 'clear', 'copy', 'encoding',
'fromkeys', 'get', 'getlist', 'has_key', 'items', 'iteritems', 'iterkeys', 'itervalues',
'keys', 'lists', 'pop', 'popitem', 'setdefault', 'setlist', 'setlistdefault', 'update',
'urlencode', 'values']
अनुरोध पोस्ट कुंजियों में कोई कुंजी नहीं है।
जब मैं Firebug में POST को देखता हूं , तो JSON डेटा अनुरोध में भेजा जाता है।
len(request.POST)
और request.POST.items()
भी मदद मिलेगी।