我是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}
]
答案 0 :(得分:1)
看起来像一个包含对象[{},{},{}]的数组,因此您可以迭代数组