Ramda 之 find()

栏目: 编程语言 · 发布时间: 7年前

内容简介:Ramda 0.26.1簡單的需求,想找到

find() 為 Ramda 常用的 Operator,常搭配 propEq()equals() Operator 一併使用。

Version

Ramda 0.26.1

Imperative

const books = [
  {id: 1, title: 'Functional Programming in JavaScript'},
  {id: 2, title: 'RxJS in Action'},
  {id: 3, title: 'Speaking JavaScript'},
];

const findBookById = (id, data) => {
  for(let item of data)
    if (item.id === id) return item;
};

const result = findBookById(1, books);
console.log(result);

簡單的需求,想找到 id1book object。

Imperative 會使用 for loop 搭配 if 判斷,若 id 找到就 return book object。

Ramda 之 find()

Array.prototype

const books = [
  {id: 1, title: 'Functional Programming in JavaScript'},
  {id: 2, title: 'RxJS in Action'},
  {id: 3, title: 'Speaking JavaScript'},
];

const findBookById = (id, data) =>
  data.find(x => x.id === id);

const result = findBookById(1, books);
console.log(result);

Array.prototype 有內建 find() ,只要傳入 Arrow Function 即可。

Ramda 之 find()

Ramda

import { find, propEq } from 'ramda';

const books = [
  {id: 1, title: 'Functional Programming in JavaScript'},
  {id: 2, title: 'RxJS in Action'},
  {id: 3, title: 'Speaking JavaScript'},
];

const finder = id => propEq('id', id);
const findBookById = (id, data) =>
  find(finder(id), data);

const result = findBookById(1, books); 
console.log(result);

Ramda 當然也有內建 find() ,其 signature 為

find()

(a → Boolean) → [a] → a | undefined

第一個參數為 a -> Boolean function,也就是 x => x.id === id

第二個參數為 [a] ,也就是 array。

若找到回傳為 a ,找不到回傳 undefined

第二個參數要自行傳入 Arrow Function 亦可,Ramda 特別提供 propEq() HOF 產生這類 Arrow Function。

propEq()

String -> a -> Object -> Boolean

第一個參數 String 為 object 的 property。

第二個參數 a 為要找的資料。

回傳為 Object -> Boolean ,也就是 find() 需要的 Arrow Function。

Ramda 之 find()

Q : propEq() 只適用於 array 內為 object,若為一般 value 呢 ?

import { find, equals } from 'ramda';

const data = [1, 2, 3];
const result = find(equals(1), data);
console.log(result);

Array 內若為一般 value,callback 就必須使用 equals()

equals()

a -> b -> Boolean

第一個參數 a 為要找的資料。

回傳 b -> Boolean ,也就是 find() 需要的 Arrow Function。

Ramda 之 find()

Conclusion

  • find() 為 Ramda 常用的 operator,其 callback 可搭配 propEq()equals() 產生

以上所述就是小编给大家介绍的《Ramda 之 find()》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

洞察人心

洞察人心

Steve Portigal / 张振东、蒋晓、戴传庆、孙启玉 / 电子工业出版社 / 2015-10 / 65.00元

用户在哪里,有什么需求?他们为什么会选用竞争对手的产品而不是你的?从大数据中固然能得出一些结论,但是要搞清楚作为地球上顶级复杂生物的人的真实想法,还是走近他们,面对面访谈更直接有效。 用户访谈是一项技能,与一般的交谈有本质上的区别,需要遵从一定的步骤和方法。优秀的采访者用最自然的方式和用户进行交流,看似不经意,而实际上该说什么、何时说、如何说以及什么时候应该沉默,都有精准的权衡,都试图在闲聊......一起来看看 《洞察人心》 这本书的介绍吧!

图片转BASE64编码
图片转BASE64编码

在线图片转Base64编码工具

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

MD5 加密
MD5 加密

MD5 加密工具