我正在使用Lodash链,在构建服务时遇到了上述问题。
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);
1条答案
按热度按时间jjjwad0x1#
这个问题来自于babel-plugin-lodash不支持lodash链。
要解决这个问题,必须使用lodash的流操作符。
下面是一个例子: