...{cityCode:this.curCity}state.chartData = {...state.chartData,...val}
1 回答
月关宝盒
TA贡献1772条经验 获得超5个赞
ES6扩展运算符。它好比 rest 参数的逆运算,将一个数组转为用逗号分隔的参数序列。 console.log(1, [2, 3, 4], 5) console.log(1, ...[2, 3, 4], 5) array.push(...[2, 3, 4]); Math.max(...[14, 3, 77]) 可以试试
添加回答
举报
0/150
提交
取消