KnockoutJS - método shift ()

Descrição

O observável KnockoutJS shift() método remove o primeiro item da matriz e o retorna.

Sintaxe

arrayName.shift()

Parâmetros

Não aceita nenhum parâmetro.

Exemplo

<!DOCTYPE html>
   <head>
      <title>KnockoutJS ObservableArray shift 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 shift() method.</p>
      <button data-bind = "click: shiftEmp">Remove First Emp</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.shiftEmp = function() {
               this.empArray.shift();     //remove first item
            }
         }
         
         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-shift.htm Arquivo.

  • Abra este arquivo HTML em um navegador.

  • Clique no botão Remove First Emp e observe que o primeiro elemento é removido.