1.问题 image 2.分析 tasklist2不是一个数组,应该将其转为数组在用map展开。 3.解决方式 将const taskList2 = this.props.taskList2;改为let taskList2=Array.from(this.props.taskList2); image