编程语言
首页 > 编程语言> > javascript – 使用bind的部分函数

javascript – 使用bind的部分函数

作者:互联网

所以最近我发现你可以使用bind做js的部分函数/ currying.
例如:

const foo = (a, b, c) => (a + (b / c))
foo.bind(null, 1, 2) //gives me (c) => (1 + (2 / c))

但是,这仅适用于您要咖喱的部分.如果我想使用bind实现以下内容怎么办?

(b) => (1 + (b / 2))

尝试过各种解决方案,例如:

foo.bind(null, 1, null, 2)

有任何想法吗?用香草es6可以实现这个目标吗?

解决方法:

您可以使用包装器来重新排序参数.

const
    foo = (a, b, c) => a + b / c,
    acb = (a, c, b) => foo(a, b, c);

console.log(acb.bind(null, 1, 2)(5));

标签:javascript,ecmascript-6,bind,currying,partial-application
来源: https://codeday.me/bug/20190627/1304133.html