如果扩展运算符(...)在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

10-06 11:56