如果Spread Operator(...)在redux中不起作用。 spread运算符用于数组构造和解构,并在调用时填充数组中的函数参数。运算符展开数组(或可迭代对象)元素的情况。
答案 0 :(得分:1)
open CMD
npm install --save-dev babel-plugin-transform-object-rest-spread
and then create a file named .babelrc in your project directory, write the following code in it. Save and run npm.
{
"plugins": ["transform-object-rest-spread"]
}
Shared from https://github.com/kpilard