Descrição
O observável KnockoutJS pop() método remove o último item de uma matriz e o retorna.
Sintaxe
arrayName.pop()
Parâmetros
Não aceita nenhum parâmetro.
Exemplo
<!DOCTYPE html>
<head>
<title>KnockoutJS ObservableArray pop 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 pop()method.</p>
<button data-bind = "click: popEmp">Remove 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.popEmp = function() {
this.empArray.pop();
}
}
var em = new EmployeeModel();
ko.applyBindings(em);
</script>
</body>
</html>
Resultado
Vamos realizar as etapas a seguir para ver como o código acima funciona -
Salve o código acima em array-pop.htm Arquivo.
Abra este arquivo HTML em um navegador.
Clique no botão Remove Emp e observe que o último elemento é removido.