bug小记

  1. 应用场景:修改机构课程标签的时候,同步把sys_startpicturemsg这个表里对应的机构标签也修改

实现方案:通过判断传过来的机构标签参数来修改sys_startpicturemsg表中对应字段

注意事项:一定要注意判断传过来的参数是否为空,再进行操作。因为此项参数是可选的,可能单次不修改机构课程标签,所以传过来的数据可能为空,此时如果不进行判断,那么会将空串更新,从而将原来的数据覆盖掉,造成bug 

 

判断是否为空方法:

public static boolean isNotNullStr(String str) {
        return null != str && !str.trim().equals("") ? true : false;
    }

以下为controller中部分代码:

if (Tools.isNotNullStr(rbiotype)) {

Map<String , Object> map = new HashMap<String, Object>();

map.put("orgid", orgid);

String[] otypes = rbiotype.split(",");

StringBuffer sbf = new StringBuffer();

if (otypes.length > 1) {

for (int i = 0; i < otypes.length; i++) {

String otype = appMapService.findLnameByLid(otypes[i]);

if(Tools.isNotNullStr(otype)) {

sbf.append(otype);

if (i < otypes.length - 1) {

sbf.append(",");

}

map.put("types", sbf.toString());

    appMapService.updateStartpictureMsgRbiotype(map);

}else {

resultmap.put("errmsg","含无效机构课程代码");

resultmap.put("status","1");

}

}

}else {

String otype = appMapService.findLnameByLid(rbiotype);

sbf.append(otype);

map.put("types", sbf.toString());

appMapService.updateStartpictureMsgRbiotype(map);

}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值