我正在尝试使用从查询/findAllBy 中的对象创建的地图填充列表...我总是最终得到与循环中最后一张地图相同的地图列表。
我已经设置了断点并逐步执行该方法,发现 1)从查询返回的数据是正确的,2)当我逐步执行循环时,数据被正确插入到地图中,3)失败发生在将地图插入到列表中。我用来将元素插入列表的所有方法(.add、.push、<<、list[(i)] = map 等)最终都会覆盖列表中的所有先前元素。
请帮忙。我不知道为什么会这样。希望这对外面的人来说是一件容易的事。
def shiftRecords = Shift.findAllByUserAndStartTimeBetween( userInstance, startDate, endDate )
ArrayList allShifts = new ArrayList()
LinkedHashMap thisShift = new LinkedHashMap()
def size = shiftRecords.size()
for ( int i = 0; i < size; i++ ){
thisShift["id"] = shiftRecords[(i)].id
thisShift["user"] = shiftRecords[(i)].user
thisShift["startTime"] = shiftRecords[(i)].startTime
thisShift["posCode"] = shiftRecords[(i)].posCode
thisShift["deptCode"] = shiftRecords[(i)].deptCode
thisShift["billingIDX"] = shiftRecords[(i)].billingIDX
Position thisPos = Position.findByPositionCode( thisShift.posCode )
thisShift["posTitle"] = thisPos.shortTitle
thisShift["deptTitle"] = thisPos.departmentTitle
allShifts.add( (i), thisShift )
}
我需要将 allShifts 的结果作为从 Shift 查询结果中提取的所选数据的地图列表。我试过使用 shiftRecords.each 和 eachWithIndex。在将 thisShift 映射插入到 allShifts 时,任何类型的循环都会出现问题。它不只是插入地图的一个实例,而是用当前的 thisShift 地图替换所有列表元素。