metodo remove ([set of values])
Descrizione
L'osservabile KnockoutJS remove([set of values]) rimuove gli elementi che corrispondono a un determinato insieme di valori.
Sintassi
arrayName.remove([set of values])
Parametri
Questo metodo accetta un parametro sotto forma di un insieme di valori.
Esempio
<!DOCTYPE html>
<head>
<title>KnockoutJS ObservableArray remove multiple 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 remove([set of values]) method.</p>
<button data-bind = "click: removemultiEmp">Remove multiple Emps</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.removemultiEmp = function() {
alert("This function is removing multiple matching items e.g.['RoseMary','Lee'].");
this.empArray.removeAll(['RoseMary','Lee']);
}
}
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-remove-set.htm file.
Apri questo file HTML in un browser.
Fare clic sul pulsante Rimuovi più emps.