KnockoutJS - método removeAll ()

Descrição

O observável KnockoutJS removeAll() método remove todos os itens e os retorna como uma matriz.

Sintaxe

arrayName.removeAll()

Parâmetros

Não aceita nenhum parâmetro.

Exemplo

<!DOCTYPE html>
   <head>
      <title>KnockoutJS ObservableArray removeAll method</title>
      <script src = "https://ajax.aspnetcdn.com/ajax/knockout/knockout-3.1.0.js"
         type = "text/javascript"></script>
   </head>

   <body>
      <p>Example to demonstrate removeAll() method.</p>
      <button data-bind = "click: removeallEmp">Remove All Emps</button>
      <p>Array of employees: <span data-bind = "text: empArray()" ></span></p>

      <script>
         function EmployeeModel() {
            this.empName = ko.observable("");
            this.chosenItem = ko.observableArray("");
            this.empArray = ko.observableArray(['Scott','James','Jordan','Lee',
               'RoseMary','Kathie']);

            this.removeallEmp = function() {
               this.empArray.removeAll();
            }
         }

         var em = new EmployeeModel();
         ko.applyBindings(em);
      </script>
      
   </body>
</html>

Resultado

Vamos realizar as seguintes etapas para ver como funciona o código acima -

  • Salve o código acima em array-removeall.htm Arquivo.

  • Abra este arquivo HTML em um navegador.

  • Clique no botão Remover todos os Emps.