Underscore.JS - dove metodo
Sintassi
_.where(list, properties)
dove il metodo itera su un dato elenco di elementi, chiama il predicato su ogni elemento. Restituisce tutte le coppie chiave-valore corrispondenti nelle proprietà.
Esamina ogni valore nell'elenco, restituendo un array di tutti i valori che corrispondono alle coppie chiave-valore elencate nelle proprietà.
Esempio
var _ = require('underscore');
var list = [{"title": "Learn Java", "Author": "Sam", "Cost": 100},
{"title": "Learn Scala", "Author": "Joe", "Cost": 200},
{"title": "Learn C", "Author": "Sam", "Cost": 200} ]
//Example 1. find books whose author is Sam
var result = _.where(list, { "Author": "Sam" });
console.log(result);
//Example 2. find books whose cost is 200
var result = _.where(list, { "Cost": 200 });
console.log(result);
Salvare il programma sopra in formato tester.js. Eseguire il comando seguente per eseguire questo programma.
Comando
\>node tester.js
Produzione
[
{ title: 'Learn Java', Author: 'Sam', Cost: 100 },
{ title: 'Learn C', Author: 'Sam', Cost: 200 }
]
[
{ title: 'Learn Scala', Author: 'Joe', Cost: 200 },
{ title: 'Learn C', Author: 'Sam', Cost: 200 }
]