admin管理员组

文章数量:1345332

Ok, for some reason my getJson is not working. I am pulling some stock information and it works in all major browsers except IE.

I have created a JSfiddle here: /

If anyone can help me understand what I am doing wrong it will be SUPER helpful.

thanks!

EDIT

I found the solution myself. The issue was in my URL query. If anyone else has this issue here is the answer:

var url = "*%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D'NPO'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables%2Falltableswithkeys";

        $.getJSON(url + "&format=json&callback=?", function(data) {
        var items = [];

        $.each(data.query.results.quote, function(key, val) {

            items.push('<li id="' + key + '">' + val + '</li>');
        });

        $('<ul/>', {
            'class': 'my-new-list',
            html: items.join('')
        }).appendTo('body');
)};

Ok, for some reason my getJson is not working. I am pulling some stock information and it works in all major browsers except IE.

I have created a JSfiddle here: http://jsfiddle/qZhSk/

If anyone can help me understand what I am doing wrong it will be SUPER helpful.

thanks!

EDIT

I found the solution myself. The issue was in my URL query. If anyone else has this issue here is the answer:

var url = "http://query.yahooapis./v1/public/yql?q=select%20*%20from%20yahoo.finance.quotes%20WHERE%20symbol%3D'NPO'&format=json&diagnostics=true&env=store%3A%2F%2Fdatatables%2Falltableswithkeys";

        $.getJSON(url + "&format=json&callback=?", function(data) {
        var items = [];

        $.each(data.query.results.quote, function(key, val) {

            items.push('<li id="' + key + '">' + val + '</li>');
        });

        $('<ul/>', {
            'class': 'my-new-list',
            html: items.join('')
        }).appendTo('body');
)};
Share Improve this question edited Nov 21, 2012 at 16:43 bpeterson76 12.9k6 gold badges50 silver badges82 bronze badges asked Dec 9, 2011 at 16:56 m_gunnsm_gunns 5471 gold badge17 silver badges29 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 8

Technically, I think you're violating the Same Origin Policy on this one. By definition, you can't do a JSON get from a domain other than your own....and getting data from Yahoo is certainly a different server than jsFiddle's. There is a similar issue reported here. The CORS exceptions they list are IE up to version 10, which would explain the issue perfectly.

The problem could be solved by using a "?" in your callback handler. See this stack article for more info.

Since its a old post this answer may be helpful to other seekers.

There may be two reasons why getJson not working in IE.

1.Either Jsonp requests which resolved by adding

 &callback=? or &callback=?

2.Set ajax catch.

$.ajaxSetup({ cache: false });

If still you have problem, it may be because of the cross-platform API usage.

I'll go for the well known cross domain policy issue with jquery and IE.

This article explain well the solution:

http://cypressnorth./programming/cross-domain-ajax-request-with-json-response-for-iefirefoxchrome-safari-jquery/

本文标签: javascriptgetJson not working in IEStack Overflow