javascript 如何解决“babel-plugin-lodash不支持Lodash链序列”

62o28rlo  于 2023-05-27  发布在  Java
关注(0)|答案(1)|浏览(296)

我正在使用Lodash链,在构建服务时遇到了上述问题。

jjjwad0x

jjjwad0x1#

这个问题来自于babel-plugin-lodash不支持lodash链。
要解决这个问题,必须使用lodash的流操作符。
下面是一个例子:

// using chain
const result = _.chain(array)
  .map(fn1)
  .filter(fn2)
  .value();

// using flow
const result = _.flow([
  arr => _.map(arr, fn1),
  arr => _.filter(arr, fn2)
])(array);

相关问题