KnockoutJS - Metodo unshift ()

Descrizione

L'osservabile KnockoutJS unshift('value') metodo inserisce un nuovo elemento all'inizio dell'array.

Sintassi

arrayName.unshift('value')

Parametri

Accetta un parametro, ovvero il valore da inserire.

Esempio

<!DOCTYPE html>
   <head>
      <title>KnockoutJS ObservableArray unshift 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 unshift() method.</p>
      <p>Enter name: <input data-bind='value: empName' /></p>
      <button data-bind="click: unshiftEmp">Add Emp in Beginning</button><br><br>
      <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.unshiftEmp = function() {
            
               if (this.empName() != "") {
                  this.empArray.unshift(this.empName());   // insert at the beginning
                  this.empName("");
               }
            }.bind(this);
         }
      
         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-unshift.htm file.

  • Apri questo file HTML in un browser.

  • Immettere il nome come Tom e fare clic sul pulsante Add Emp in Beginning.