Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialammarkhan
Front End Web Development Techdegree Student 21,661 PointsresponseText console.log is empty
I am trying the same thing as Dave did in video but I am unable to get console.log to print something in console
const xhr = new XMLHttpRequest();
xhr.readyState = function(){
if(xhr.readyState === 4){
console.log(xhr.responseText)
}
}
xhr.open('GET','data/task.json');
xhr.send();
and task.json is
{
"jobs": [
{
"id": 7,
"title": "Software engineer",
"employer": {
"name": "IBM"
},
"location": "MCR",
"salary": "£45k+"
}
]
}
2 Answers
Steven Parker
231,236 PointsYou're attemting to assign your handler function to "xhr.readyState" but that is a read-only property.
You should assign the handler to "xhr.onreadystatechange" instead.
John Lack-Wilson
8,181 PointsIf you're not receiving any statements in the console, it is most likely because the condition in your if statement is not true / never true.
Try to use console.log outside of your if statement and see what happens, if you get something then you need to change the condition within the if statement.