Запрос Mootools.JSON Decode - PullRequest
       26

Запрос Mootools.JSON Decode

1 голос
/ 01 июня 2011

Я новичок в 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 Ответ

1 голос
/ 01 июня 2011

выглядит как массив, содержащий объекты [{}, {}, {}], поэтому вы можете перебирать массив

http://jsfiddle.net/3qnJ2/

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

...