I've set up NodeJS and it's returning data when I browse to the URL: http://184.106.206.235

However, when I try to call that URL using $.getJSON, the callback shows null for the data variable and "success" for the textStatus variable.

I imagine this could be a cross-domain thing, but I'm surprised that the textStatus says "success" if that's the case.

In case it's helpful, here's the server-side JS:

http.createServer(function(req, res){
  var output = {message: "Hello World!"};
  var body = JSON.stringify(output);

  res.writeHead(200, {'Content-Type': 'application/json', 'Content-Length': body.length});
  res.end(body);
}).listen(80, "184.106.206.235");

Any ideas?

link|improve this question

76% accept rate
Is the JavaScript hosted on http://184.106.206.235? – Anurag Jul 20 '10 at 23:12
Yes, though I'm trying to access it using "client" JS hosted on a different domain. – kaneuniversal Jul 20 '10 at 23:20
Well that'd be your problem then. What "text status"? – Pointy Jul 20 '10 at 23:50
If you look at the callback for api.jquery.com/jQuery.getJSON, you'll see that it's supposed to return "data" and "textStatus" objects. – kaneuniversal Jul 20 '10 at 23:58
feedback

3 Answers

up vote 6 down vote accepted

Add the "Access-Control-Allow-Origin": "*" property to your writeHead() call:

res.writeHead(200, {
  "Content-Type": "application/json",
  "Access-Control-Allow-Origin": "*"
});
link|improve this answer
Thanks, it's great answer!!! – oivoodoo Feb 13 '11 at 22:14
The content type for json data should be application/json, see question stackoverflow.com/questions/477816/the-right-json-content-type – h--n Jan 1 at 22:16
feedback

Just a note for anyone having the same problem, the solution above worked for me with one minor alteration:

"Content-Type": "application/json"

Not "text/json".

Thanks for the solution! It was driving me crazy.

link|improve this answer
feedback

if you are using express framework you can try one of the following:
1. res.contentType('json'); to set to content type.
2. res.send({ some: 'json' }); that will set the content type and parse it for you.
3. res.json({ user: 'tj' }); probably the best way to do it.

hope it helps :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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