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 trial

APIs

Ajax - Do we need a local server for this Project: astronauts in space?

I'm not sure if I understood correctly: I understood that we need an Local server to use AJAX (XMLHttpRequest()) and with the project: Employee-Office-Status I could tested it and it just worked with a localhost. Now, with this project I tested without a localhost and it works! at least that is what I think. For example: I can see the result of this function without using Local server:

function getJSON(url) {
  const xhr = new XMLHttpRequest();
  xhr.open('GET', url);
  xhr.onload = () => {
    if(xhr.status === 200) {
      let data = JSON.parse(xhr.responseText);
      console.log(data);
    }
  };
  xhr.send();
} 
getJSON(astrosUrl);

Now I am very confusing! Do we need always Local Server if we use AJAX (XMLHttpRequest()?? ðŸĪŠðŸ™ƒðŸ™†â€â™€ïļ

Please Help!

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

A local server is just a web server that exists on your computer. It's just a slimmed down version of the web hosting servers that you pay for online. So it (i.e. XMLHttpRequest()) should work in either location. :-)