Underscore.JS findWhere方法

Underscore.JS findWhere方法

语法

_.findWhere(list, properties)

遍历列表中的每个值,返回第一个与属性中列出的键值对匹配的匹配对。

示例

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 a book whose author is Sam
var result = _.findWhere(list, { "Author": "Sam" });
console.log(result);

//Example 2. find a book whose cost is 200
var result = _.findWhere(list, { "Cost": 200 });
console.log(result);

将上面的程序保存在 tester.js 文件中。运行以下命令来执行这个程序。

命令

>node tester.js

输出

{ title: 'Learn Java', Author: 'Sam', Cost: 100 }
{ title: 'Learn Scala', Author: 'Joe', Cost: 200 }

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程