这不是从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);
答案 0 :(得分:0)
您无法使用exec
发送对象,需要对其进行序列化。
xhr.send()