如果 Spread Operator 在 redux 中不起作用

If Spread Operator is not working in redux

如果 Spread Operator (...) 在 redux 中不起作用。 展开运算符用于数组构造和解构,并在调用时填充数组中的函数参数。运算符展开数组(或可迭代对象)元素的情况。

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