$ http.get関数に増分値を渡すにはどうすればよいですか?コードスニペットは、以下を参照してください:
for($scope.index=0 ; $scope.index < 5 ; $scope.index++)
{
$http.get('/api/post', {params: { id: $scope.userActivity[$scope.index].post }})
.success(function(res){
console.log('The value for index is: ' + $scope.userActivity[$scope.index]);
})
.error(function(data, status){
console.log(data);
});
}
})
私は「インデックスの値は次のとおりです。未定義」取得していますし、それは私にナットを運転しています!
おかげ
チャームブームのように働いています!おかげでたくさんの男 –