AttributeError:'NoneType'对象没有属性'get'// 500(内部服务器错误)

时间:2018-06-23 01:48:18

标签: javascript python-requests

这不是从crome扩展名发送任何数据,我正在尝试将json字符串发送到服务器,其中提到的url表示没有返回任何类型的对象,

 var xhr = new XMLHttpRequest();
 var ur = "http://127.0.0.1:8080/animal";
 var dat = {"subject":"subject"};
 xhr.open("POST", ur, true);
 xhr.setRequestHeader("Content-type","application/x-www-form-urlencoded");
 xhr.onreadystatechange = function () {
     if (xhr.readyState == 4 && xhr.status == 200) {
         // do something with response
         console.log(xhr.responseText);
     }
};
xhr.send(dat);

         }
    };
    xhr.send(dat);

1 个答案:

答案 0 :(得分:0)

您无法使用exec发送对象,需要对其进行序列化。

xhr.send()