ฉันพยายามประมวลผลคำขอ JSON / Ajax ที่เข้ามากับ Django / Python
request.is_ajax()
อยู่True
ในคำขอ แต่ฉันไม่มีความคิดว่า payload อยู่กับข้อมูล 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']
เห็นได้ชัดว่าไม่มีคีย์ในคีย์การโพสต์คำขอ
เมื่อฉันดู POST ในFirebugจะมีการส่งข้อมูล JSON ในคำขอ
len(request.POST)
และrequest.POST.items()
ก็ยังจะช่วย