[Solved] forEach in angular


I resolved the problem with your hints.This is my working code.

 vm.filtrarInc = function (Id_Fechamento) {

            id_fechamento = Id_Fechamento;
            $scope.$parent.vm.loading = $http({
                    method: 'POST',
                    async: false,
                    url: _obterUrlAPI() + "AcompanhamentoSilt/FiltroSiltInc",
                    dataType: "jsonp",
                    params: {
                        Id_Fechamento: Id_Fechamento
                    }

                })
                .then(function successCallback(response) {
                        vm.importacaoResultado = response.data;
                        angular.forEach(vm.importacaoResultado,
                            function(filtro, index) {
                                if (filtro.FLG_ALERTA == true) {
                                    vm.importacaoSiltInc.push(filtro);
                                } else {
                                    vm.importacaoSiltAlt.push(filtro);
                                }
                            });

                    },
                    function errorCallback(response) {
                        MessageBox("Erro", response.data.Message);
                    });

        };

solved forEach in angular