console.log(
"this.props.lessonPlans.lessons inside index.js is",
this.props.lessonPlans.lessons.data.length,
);
let datacheck;
datacheck = this.props.lessonPlans.lessons.data;
console.log("datacheck is", datacheck);
datacheck.forEach(function(arrayItem) {
var x = arrayItem._id;
console.log(x);
});
我在lessonPlans.data中说了14个数据,当我进行控制台日志时,我得到了14个数据的所有_id,但是,每当数据数组的长度每次增加1时,向课程中添加新数据时,我需要获取要添加的新数据的ID。如何每次获取新添加的数据的ID?