TypeError: taskList2.map is not a function

1.问题

image

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

你可能感兴趣的:(TypeError: taskList2.map is not a function)