私はこのようなオブジェクトを持っています。オブジェクトからデータを取得する
{
"class_details":{
"class_1":{student_4":"<name>","student_3":"<name>,student_2":"<name>","student_1":"<name>},
"class_2":{"student_1":"<name>},
"class_0":{student_2":"<name>","student_1":"<name>
}
}
私はクラスを反復するためにループを使用しようとしていますが、私はそれを行うには完全な方法を見つけることができません。だから私はこの
for(int i=0; i < $scope.rounds.class_details.length;i++)
console.log(Object.keys($scope.rounds.class_details)[i])
しかし、ここをやっている
私はこのような何かを傾ける、
for(int i=0; i < $scope.rounds.class_details.length;i++)
console.log($scope.rounds.class_details.round_[i])
クラスの詳細は、順番に来ていない、これは私の場合には問題になります。
for(int i=0; i < $scope.rounds.class_details.length;i++)
console.log($scope.rounds.class_details.round_[i])
またはJSONクラスの詳細をソートするための簡単な方法がある場合に類似の代替がある場合、それは素晴らしいことです。
http://stackoverflow.com/questions/5467129/sort-javascript-object-by-key – Chris
私はこれを確かに試みますが、私がこの$ scope.rounds.class_detailsのようなデータを読めるかどうかを確認したいと思います。ラウンド_ {{0}} –