我正在尝试将ID传递给API,并让服务器返回对象,然后将该对象分配给变量,但我无法弄清楚哪里出了错
function createList() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function(){
if(this.readyState == 4 && this.status == 200 ){
var theList = JSON.parse(this.responseText);
console.log("the name of the current list given the ID is: " + theList.name);
}
};
xhttp.open('GET', 'todoapi/lists/' + editID , true);
xhttp.send();
}
我希望最终结果是一个存储对象的变量,该变量是通过向API传递对象的ID来获得的