python发送post请求,控制台返回
{"code":1,"message":"JSON parse error: Unrecognized token 'username': was expecting ('true', 'false' or 'null'); nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized token '
导致的原因可能是你的json数据可能不规范,但是我也不清楚为啥不规范,欢迎大佬在评论区留言
解决办法:
先安装一个叫做demjson的模块,是专门解析不规范的json数据的,然后引用demjson.encode(login_data)这样即可