vote up 2 vote down star
1

Hi, I'm a noob at json (know a bit of jquery)....and trying to get a tiny script to work I want to retrieve the time at a certain lat/lng and made up this script in bits from what I've read online:

$.getJSON("http://ws.geonames.org/timezoneJSON?lat=47.01&lng=10.2&callback=?", 

    { 'uID': 1 }, 

    function(data) {
        $.each(data, function(i, item) {
            $("<span/>").html(item.time).html(".nowtime");
        });
    });

Needless to say, it doesn't work...could someone give me a hand with it and also explain what $("").html(item.time).html(".nowtime"); means. (I don't understand what the first is)

Here is the json source reference: http://www.geonames.org/export/web-services.html#timezone

thanks

flag
fire up firebug. where does it fail? sending the request? or in the callback? – geowa4 Jul 21 at 17:32
nvm i ran it. it fails in the callback. firebug aint to great to debug in, but at least i can be reasonably assured that it's not XSS. – geowa4 Jul 21 at 17:37

4 Answers

vote up 2 vote down check

I originally thought the problem is most likely in the same origin policy. In order to do an AJAX request to a URL, it must be in the same domain (and port) as the page containing the Javascript code.

But after George IV's correction, I checked it out.

The data object returned in the callback is the JSON-evaled object, and it is not an array. Most likely, your code should've read something like:

$.getJSON("http://ws.geonames.org/timezoneJSON?lat=47.01&lng=10.2&callback=?", 
  { 'uID': 1 }, 
  function(data) {
    $("<span/>").html(data.time); // Or maybe with a different selector (see below)
  }
);

The selector is probably also wrong, You might want, for example, to put the result in a div with an id of test. The line containing the selector in that case should be changed to:

$("#test").html(data.time);

What this is saying is, get the object with id test (the hash sign (#) indicates it is an idea), and update the content with whatever data.time is set to.

link|flag
nope. run it yourself in firebug. it breaks in the callback. – geowa4 Jul 21 at 17:34
You're right, I can't believe me eyes! Fixed answer, though. – Sinan Taifour Jul 21 at 17:43
it better be ok, it's what stackoverflow uses for its flair. – geowa4 Jul 21 at 17:52
sweet! works great Sinan....it is so much simpler than what I thought the code would be. I suppose the each statement has to be used when one wishes to output multiple objects? thanks for your help, and you too George IV – unknown (google) Jul 21 at 17:58
Normally, yes. You use each when you are looping through an array, which contains multiple objects. You could use each with an object (like data in the code above), but it is a different use-case; it goes over all of its properties, and you probably won't need that soon (if you are still using JSON for the first time!). – Sinan Taifour Jul 21 at 19:20
vote up 0 vote down

You're not very clear on what's wrong. The callback appears to be trying to get the nowtime field and put it in a control on the page. I think this:

$("").html

Should have a selector in the double quotes to tell it where the result goes. Something like $("#myfield")....

link|flag
There's no "nowtime" property. I'm guessing that it's a class that should be applied, but there's not enough code (markup) to tell. – tvanfosson Jul 21 at 17:48
vote up 1 vote down

The span code is creating a span element and then setting it's HTML to the returned time value. The code looks wrong, though, as it immediately sets the HTML to ".nowtime" but never actually adds it to the DOM. I'm guessing that the last .html('.nowtime') really should be .addClass('.nowtime') and there should be a .appendTo(???) somewhere in there, but I'm not sure where you should be appending it.

EDIT:

Also, I don't think you need the each function. It appears to be iterating over the members of the data object. You want to just have it use the time property directly.

Example (though, you likely want it added to the DOM elsewhere):

$(function() {
    $.getJSON("http://ws.geonames.org/timezoneJSON?lat=47.01&lng=10.2&callback=?", { 'uID': 1 }, function(data) {
        $("<span/>").html(data.time).appendTo('body');
    });
});

Note: if your the JSONP call were to return an array of objects then you would need to iterate through them with the each method. I don't know enough about the service to know if there are methods that would return an array of objects. This call doesn't, though.

link|flag
We have a winner! I just ran it in firebug and the problem is in using the each. i is the key and item is the value in his case. – geowa4 Jul 21 at 17:51
vote up 0 vote down

Well, I guess www.geonames.org isn't your domain. And you can't do AJAX request to a different domain because of browser's security restrictions.

link|flag
1  
er... can't you? isn't that why they created the API? – Mark Jul 21 at 17:31
They most likely created it for server-to-server communication, no browser-to-server. – Sinan Taifour Jul 21 at 17:32
1  
jQuery can do JSONP. Basically a <script> tag is inserted and that's how it goes around SOP. Obviously only works for JSON. – Lenni Jul 21 at 17:33
1  
Check out JSONP for this purpose. docs.jquery.com/Release:jQuery_1.2/… – Lunchy Jul 21 at 17:34
1  
guys, it runs fine as javascript. the problem is not xss, it is in his handler. $.getJSON("http://ws.geonames.org/timezoneJSON?lat=47.01&lng=10.2&callback=?", {'uID': 1}, function(data){alert(data.time);}); works fine. – geowa4 Jul 21 at 17:45
show 3 more comments

Your Answer

Get an OpenID
or

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