1

前言:我是 JavaScript 新手,正在学习一些教程,但我被困在这里!

我在安装了 PHP 5.3.13 的 WAMP 上本地运行以下命令。我在控制台中没有收到任何错误,但由于某种原因没有显示任何内容!

有人知道为什么吗?

最小化的 JSON:

{"channel":{"title":"RSS Sample","description":"A sample RSS Feed","link":"http://www.website.com","copyright":"Copyright 2012"}}

JavaScript:

var xhr = new XMLHttpRequest();

xhr.open("GET", "rss.json", true);

xhr.onreadystatechange = function() {
if (xhr.readystate === 4) {
    var status = xhr.status;

    if ((status >= 200 && status < 300) || status === 304) {
        var rss = JSON.parse(xhr.responseText);

        alert(rss.channel.description);
    } else {
        alert("Request unsuccessful");
    }
}
};

xhr.send(null);

任何帮助将不胜感激!:)

4

2 回答 2

2

正确的属性名称是readyState(大写“S”)。

于 2013-01-10T01:24:39.937 回答
-1

我还没有见过以这种方式使用 JSON,尽管我更喜欢 php。

尝试使用 AJAX 获取该 JSON。它看起来像这样

$("#a_button").click(function() {
        $.ajax({
               type: "POST",
               url: "json.php",
               dataType: "json",
               cache: false,
               success: function(data)
               {
                    alert(data.smth);
               }
             });
        return false;
    });

总是使用这种方式,它工作得很好。

于 2013-01-10T01:16:41.953 回答