Ramda 之 applySpec()
栏目: JavaScript · 发布时间: 5年前
内容简介:Ramda 之WebStorm 2018.3.3Quokka 1.0.136
Ramda 之 pick()
只能擷取 Object 的部分 Property,且名稱不能改變,若連名稱也要改變,就要改用 applySpec()
。
Version
WebStorm 2018.3.3
Quokka 1.0.136
Ramda 0.26.1
Non Point-Free
import { map } from 'ramda'; const data = [ { id: 1, title: 'Functional Programming in JavaScript', year: 2016 }, { id: 2, title: 'RxJS in Action', year: 2017 }, { id: 3, title: 'Speaking JavaScript', year: 2014 }, ]; const getBooks = map(x => ({ name: x.title, since: x.year })); console.dir(getBooks(data));
若我們只要 title
與 year
兩個 property,但名稱要改成 name
與 since
,若使用 Arrow Function,我們可以直接指定新的 property 名稱。
但因為 callback 還有 x
參數,所以並不是 Point-free。
Point-Free
import { map, applySpec, prop } from 'ramda'; const data = [ { id: 1, title: 'Functional Programming in JavaScript', year: 2016 }, { id: 2, title: 'RxJS in Action', year: 2017 }, { id: 3, title: 'Speaking JavaScript', year: 2014 }, ]; const getBooks = map(applySpec({ name: prop('title'), since: prop('year'), })); console.dir(getBooks(data));
Ramda 提供了 applySpec()
,用來建立新 object,並使用 prop()
取得原 object 的 property。
applySpec()
{k: ((a, b, …, m) → v)} → ((a, b, …, m) → {k: v})
依照 spec object 建立新的 object
{k: ((a, b, …, m) → v)}
:新的 spec object,其 value 為 function
(a, b, …, m)
:餐數會套用到所有 value function
{k: v}
:回傳新的 object
applecSpec()
配合 prop()
,由於 Point-free,可讀性非常高,很明確看到新 property 與原 property
Conclusion
-
applySpec()
的 signature 看起來很嚇人,但只要靜下心看,其實也還好,且實際使用時,程式碼可讀性非常高
Reference
以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Ethnography and Virtual Worlds
Tom Boellstorff、Bonnie Nardi、Celia Pearce、T. L. Taylor / Princeton University Press / 2012-9-16 / GBP 21.00
"Ethnography and Virtual Worlds" is the only book of its kind - a concise, comprehensive, and practical guide for students, teachers, designers, and scholars interested in using ethnographic methods t......一起来看看 《Ethnography and Virtual Worlds》 这本书的介绍吧!