KnockoutJS - método unshift ()
Descrição
O observável KnockoutJS unshift('value') método insere um novo item no início da matriz.
Sintaxe
arrayName.unshift('value')
Parâmetros
Aceita um parâmetro, que é o valor a ser inserido.
Exemplo
<!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>
Resultado
Vamos realizar as seguintes etapas para ver como funciona o código acima -
Salve o código acima em array-unshift.htm Arquivo.
Abra este arquivo HTML em um navegador.
Digite o nome como Tom e clique no botão Adicionar Emp no início.