KnockoutJS - metodo removeAll ()

Descrizione

L'osservabile KnockoutJS removeAll() rimuove tutti gli elementi e li restituisce come un array.

Sintassi

arrayName.removeAll()

Parametri

Non accetta alcun parametro.

Esempio

<!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>

Produzione

Eseguiamo i seguenti passaggi per vedere come funziona il codice sopra:

  • Salva il codice sopra in formato array-removeall.htm file.

  • Apri questo file HTML in un browser.

  • Fare clic sul pulsante Rimuovi tutti gli emps.