jQuery YQL json 解析问题
我正在尝试从请求中解析 json,但我总是得到 null。当我执行 console.log(data) 时,它打印 null。
$.ajax({ url: "http://query.yahooapis.com/v1/public/yql", dataType: "jsonp", success: function(content) { var data = jQuery.parseJSON(content); console.log(data); }, data: { q: 'select * from html where url="http://www.google.com"', format: "json" } });
I am trying to parse json from a request, but I keep getting null. When I do console.log(data), it prints null.
$.ajax({ url: "http://query.yahooapis.com/v1/public/yql", dataType: "jsonp", success: function(content) { var data = jQuery.parseJSON(content); console.log(data); }, data: { q: 'select * from html where url="http://www.google.com"', format: "json" } });
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 jQuery 可能已经为您解析了您的“内容”。当你:
??
时会发生什么? (实际上现在我想到了内容是由浏览器在收到响应脚本主体时解析的。)
I think that your "content" is probably already parsed for you by jQuery. What happens when you:
??
(Actually now that I think of it the content is parsed by the browser when it receives the response script body.)