JSON解码错误:第2行第1栏(char 1)的值为

时间:2019-10-09 10:50:20

标签: json

我正在运行django应用程序。我遇到JSON解码错误:期望值行2第1列(字符1)

我正在通过http://localhost运行,并且收到此JSON解码错误。 如果我通过IP地址:127.0.0.1运行,则会收到新连接错误

if request.method == "POST":
    usern=request.POST.get('username')
    passw=request.POST.get('password')
    response = requests.post(url='http://localhost',data={"Username":usern,"password":passw})
    json_data = response.json().decode("utf-8")

0 个答案:

没有答案