Я новичок в 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}
]