我想循环一个进程并每次将一个对象添加到我的数据库中,但如果它没有正确添加,我想在一个多维数组中收集错误。一个数组将保留有错误的批次,第二个数组将包含错误消息。
这里是我的报关表:
errors = [[],[]]
所以我希望数组的格式如下:
[[lot_count, "#{attribute}: #{error_message}" ]]
循环后应该是这样的:
[[1, "Name: Can not be blank" ],[1, "Description: Can not be blank" ],[2, "Name: Can not be blank" ]]
我的问题是它不会将它添加到数组中。我不确定多维数组的语法是否不同。
这在我的数组中没有给我任何东西
errors.push([[lot_count, "#{attribute}: #{error_message}" ]])
这也没有给我任何东西
errors += [[lot_count, "#{attribute}: #{error_message}" ]]