- 应用场景:修改机构课程标签的时候,同步把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);
}
}