Ramda 之 find()

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

内容简介: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()》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

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

七周七语言(卷2)

七周七语言(卷2)

【美】Bruce A. Tate(泰特)、Fred Daoud(达乌德)、Ian Dees(迪斯) / 7ML翻译组 / 人民邮电出版社 / 2016-12 / 59

深入研习对未来编程具有重要意义的7种语言 Lua、Factor、Elixir、Elm、Julia、Idris和MiniKanren 本书带领读者认识和学习7种编程语言,旨在帮助读者探索更为强大的编程工具。 本书延续了同系列的畅销书《七周七语言》《七周七数据库》和《七周七Web开发框架》的体例和风格。 全书共8章,前7章介绍了Lua、Factor、Elm、Elixir、Jul......一起来看看 《七周七语言(卷2)》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

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

在线图片转Base64编码工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具