如果扩展运算符在 redux 中不起作用
Posted
技术标签:
【中文标题】如果扩展运算符在 redux 中不起作用【英文标题】:If Spread Operator is not working in redux 【发布时间】:2018-02-19 08:16:49 【问题描述】:如果扩展运算符 (...) 在 redux 中不起作用。 扩展运算符用于数组构造和解构,并在调用时从数组中填充函数参数。运算符传播数组(或可迭代对象)元素的情况。
【问题讨论】:
【参考方案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
【讨论】:
以上是关于如果扩展运算符在 redux 中不起作用的主要内容,如果未能解决你的问题,请参考以下文章
如何在 react-redux 中使用扩展运算符修改索引处的特定对象?