jQuery YQL json 解析问题

发布于 2024-11-04 18:02:39 字数 391 浏览 1 评论 0原文

我正在尝试从请求中解析 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

预谋 2024-11-11 18:02:39

我认为 jQuery 可能已经为您解析了您的“内容”。当你:

console.log(content);

??

时会发生什么? (实际上现在我想到了内容是由浏览器在收到响应脚本主体时解析的。)

I think that your "content" is probably already parsed for you by jQuery. What happens when you:

console.log(content);

??

(Actually now that I think of it the content is parsed by the browser when it receives the response script body.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文