我无法使用Lodash复制对象数组。
请参阅代码,
var freshSlots = _.clone(this.bookingSlots);
console.log(freshSlots) // It prints the new changed copy
this.bookingSlots=this.bookingSlots[0].booked=true // here I am running some loops and changing the property values of this.bookingSlots
正如你所看到的,这个克隆是通过引用发生的,这就是为什么我从来没有得到旧版本。如何通过值获取旧副本?
谢谢。