KnockoutJS - metodo slice ()
Descrizione
L'osservabile KnockoutJS slice()il metodo taglia una parte di un array. Slice here è uguale alla funzione di slice JavaScript nativa. Restituisce gli elementi da start-index fino a endindex.
Sintassi
arrayName.slice(start-index,end-index)
Parametri
Accetta 2 parametri, indice iniziale e indice finale.
Esempio
<!DOCTYPE html>
<head>
<title>KnockoutJS ObservableArray slice 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 slice() method.</p>
<p>slice(1,3) to show items starting from index 1 up to 3:
<span data-bind = "text: empArray().slice(1,3)"></span>
</p>
<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']);
}
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-slice.htm file.
Apri questo file HTML in un browser.