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
3 Answers
Reset to default 8Technically, 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
版权声明:本文标题:javascript - $.getJson not working in IE - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743755142a2533371.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论