简体   繁体   中英

request.POST.get() gives None in django

I have an ajax call and I caught the request using pdb. request.POST gives me the following value:

<QueryDict: {u'{"layer_id":1,"status":"True"}': [u'']}>

But request.POST.get('status') gives None

You are not sending form-encoded data, so request.POST is useless. Use request.body .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM