django中request.post为空 项目是用vue来作为前端,django作为后端,现在在写登录验证,写好后发现跨域问题,然后就关掉了跨域验证,现在就是我使用postman模拟请求的时候请求头加了,然后username,password都有但就是显示request.post为空,这是怎么回事???大神求教 评论 1 登录评论 巽二郎 2021-01-06 看看前端请求头:Content-Type为application/json 后台数据在request.body里面 import json xxx = json.loads(request.body)
巽二郎 2021-01-06 看看前端请求头:Content-Type为application/json 后台数据在request.body里面 import json xxx = json.loads(request.body)
评论 1
看看前端请求头:Content-Type为application/json 后台数据在request.body里面 import json xxx = json.loads(request.body)