I'm just beginning with JavaScript and I was wondering if I can access a JSON file on the localhost without the use of any servers (like WAMP). I was planning to just read the contents of a JSON file and reflect its contents to an HTML file.

Thanks in advance! I really need help... :(

link|improve this question
feedback

1 Answer

Short answer, yes you can.

Make an XMLHttpRequest against a static file such as: resources/myJSON.json (the extension is merely for organization, you can call the file whatever you want really).

Parse the response as JSON.

Obviously the file must contain a properly formatted JSON object of data, but as long as that's the case, you can load static JSON from a file to "simulate" remote connectivity to a server.

When you're browsing a file as: file:// on your system, it should treat the relative paths correctly.

link|improve this answer
Depending on your browser, you may need to alter the security settings to enable the XMLHttpRequest to load that file though. – Brian Feb 16 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.