Mootools Request.JSON解码

时间:2011-06-01 04:30:10

标签: json mootools request

我是mootools的初学者,任何人都可以帮我弄清楚如何有效地解码JSON中的每一个呼喊以登录控制台。

        var shoutsRequest = new Request.JSON(
            {
                url: this.url,
                onSuccess: function(shouts)
                {
                    console.log(JSON.decode(shouts));
                },
                onError: function(text, error)
                {
                    console.log(text)
                }
            }
        ).get();

这是JSON。

[
    {id:"1", username:"codyrob", shout:"This is a test.", time:"May 30, 3:20 pm"}, 
    {id:"2", username:"codyrob", shout:"This is a test.", time:"May 30, 3:20 pm"}, 
    {id:"3", username:"codyrob", shout:"This is a test.", time:"May 30, 3:20 pm"}, 
    {id:"4", username:"codyrob", shout:"This is a test.", time:"May 30, 3:20 pm"}, 
    {id:"5", username:"codyrob", shout:"This is a test.", time:"May 30, 3:20 pm}
]

1 个答案:

答案 0 :(得分:1)

看起来像一个包含对象[{},{},{}]的数组,因此您可以迭代数组

http://jsfiddle.net/3qnJ2/

http://mootools.net/docs/core/Types/Array#Array:Array-each