react对于setState的写法,改变state的数组里边的值也可以这样写
[1,2,3,4,5].forEach((item)=>{
let arr={}
arr[`list${item}`]=[]
this.setState(arr)
})