私はこの形式のjsonを持っています:
var test = { "name1" : [ "aaa", "bbb"], "name2" : [ "ccc", "ddd" ] };
私はこれを次のように反復しようとしました
for (var names in test )
{
for ( var element in names )
{
// problem we got the chars in the "names1", etc
}
}
正確に何を逃したのですか?