标签:strong 实现 one get order done for循环 dsp border
步骤:
1. 在一个for循环这么写的:
supGoodsPrice.add(subOrderGood.getPrice());
2. 然后在循环之后赋值:
order.setSupGoodsPrice(supGoodsPrice);
3. 最后保存order到数据库:
orderMapper.addOneOrder(order);
结果:
保存到库里的sup_goods_price值是空的。。。。。。
太不应该犯的低级错误,第1步的
supGoodsPrice.add(subOrderGood.getPrice());
没有赋值成功,应该改成 supGoodsPrice = supGoodsPrice.add(subOrderGood.getPrice());
注意:
以后还是得细心点,要编写优良的代码,不要做bug的制造者。要不怎么实现 "中国梦"。
标签:strong 实现 one get order done for循环 dsp border
原文地址:https://www.cnblogs.com/fanqie15/p/11022076.html