Записать содержимое в ng-repeat

У меня есть директива ng-repeat, извлекающая данные из статического файла json. Я использую фильтр для ограничения количества элементов директивы и кнопки для увеличения / уменьшения этого предела. Я хочу, чтобы содержимое было добавлено (добавлено вверху) к списку при нажатии кнопки. Обратите внимание, что мне не нужно увеличивать массив, я загрузил все необходимые данные на json.

<!DOCTYPE html>
<html lang="pt-BR" ng-app="myApp">
<head>
    <script src="js/angular.min.js"></script>
    <script src="js/angular-sanitize.min.js"></script>
    <script>
        var myApp = angular.module('myApp', ['ngSanitize']);
        myApp.controller('myController', function myController($scope,$http){
            $http.get('js/exemple.json').then(function(response){
                $scope.exemple = response.data;
            });
        })
    </script>
</head>
<body class="home" ng-controller="myController">
    <form class="filtro">
        <label>
            Filtrar por: <strong>{{query}}</strong> <br> <input type="text" placeholder="Digite para filtrar" ng-model="query"> 
        </label>
        <label>
            <input type="radio" ng-model="filtrarPor" name="filtro" value="" checked class="checked"> padrão 
        </label>
        <label>
            <input type="radio" ng-model="filtrarPor" name="filtro" value="cliente"> cliente 
        </label>
        <label>
            <input type="radio" ng-model="filtrarPor" name="filtro" value="tipo"> tipo
        </label>
        <button ng-click="limit = limit + 3" ng-disabled="limit >= exemple.portifolio.length">mostrar mais</button>
        <button ng-click="limit = limit - 3" ng-disabled="limit == 3">mostrar menos</button>
    </form>
    <div class="portifolio-itens" ng-init="limit = 6">
        <div class="portifolio-item" ng-repeat="item in exemple.portifolio | filter:query | orderBy:filtrarPor | limitTo:limit">
            <a data-id="#job{{$index}}">
                <h3>{{item.tipo}}</h3>
                <h4>{{item.cliente}}</h4>
                <p>{{item.info}}</p>
            </a>
        </div>
    </div>
</body>
</html>

1 ответ

Спасибо за комментарии! Мне удалось добиться того, что мне нужно, с помощью CSS flexbox, не меняя ни одного аспекта js / html, который я разместил:

.portifolio-itens {display: flex; flex-wrap: wrap-reverse;}

Другие вопросы по тегам