我的using flatMap
的组件方法中有一些代码。该代码在浏览器中工作正常,但是使用flatMap
运行代码时,yarn test
方法不存在。以前有没有人见过这样的东西?
● Click Events › should copy table data
TypeError: children.map(...).flatMap is not a function
181 | const dataKeys = children
182 | .map(({ $: { data: dataKey } }) => dataKey)
> 183 | .flatMap(k => k.split(LEVEL_DELIMITER));
| ^
编辑-可重现的示例:创建了一个CRA库并添加了这个简单的测试:
it('can flatMap', () => {
[1, 2, 3, 4].flatMap(x => [x * 2]);
});
遇到相同的错误:
FAIL src/App.test.js
● can flatMap
TypeError: [1,2,3,4].flatMap is not a function
at Object.<anonymous>.it (src/App.test.js:12:16)
at new Promise (<anonymous>)
at Promise.resolve.then.el (node_modules/p-map/index.js:46:16)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
✓ renders without crashing (4ms)
✕ can flatMap
答案 0 :(得分:8)
我的一个同事找到了解决方案。显然{.1}不被Node.js支持:
答案 1 :(得分:2)
对于什么值,使用react polyfill包对我也有用。我可以控制自己的本地环境,但是必须使用的构建系统受到更多团队的限制和使用。
npm软件包:react-app-polyfill
用法:
// setupTests.js (jest)
// Using ie9 polyfills as the "kitchen sink" of polyfills
import 'react-app-polyfill/ie9';
import 'react-app-polyfill/stable';
这适用于我目前拥有的Node v10.16.0。