摘要:
没有 value所以要在里面加上input 同时text 为hidden这样就不会显示value的值 var chk_value = []; function jqchk() { //jquery获取复选框值 $('input[name="id"]:checked').each(function() { var ip = $(this).attr('id'); var val = $(this).val(); //alert(val); var unit = $('#unit_'+ip).val(); var goodRefS 阅读全文
摘要:
比如在XXXServiceImpl里面写了aa()方法给别的地方调用但是自己又调用了自己在开头写了@AutowiredPrivate XXX xxx;xxx.aa();这样重复调用自己的bean就发生错误 阅读全文
摘要:
1为抛出异常原因,2为异常解决方法。原因: 进入spring:bind标签源码你可以看到Object target = requestContext.getModelObject(beanName); if (target == null) { throw new IllegalStateException("Neither BindingResult nor plain target object for bean name '" + beanName + "' available as request attribute"); }be 阅读全文
摘要:
// 开单时间 if (!"".equals(startDate) && startDate != null) { queryCondition = queryCondition + " and t.receiptDate >= str_to_date('" + startDate + "','%Y-%m-%d')" ; } if (!"".equals(endDate) && endDate != null) { ... 阅读全文
摘要:
select*frompeoplewherepeopleIdin(selectpeopleIdfrompeoplegroupbypeopleIdhavingcount(peopleId)>1) http://www.codesky.net/article/201011/146964.html 阅读全文
摘要:
在操作”小弟“这张表时候报错想在“小弟”上面加入数据或者更新数据,就要听老大的,这句话后面跟着的表就是“老大”,必须老大有数据索引,“小弟“才可以加入或者更新查看“小弟”表的外键,会发现有对“老大”表的外键索引。举例在要删除或者滞空warehouse_picked_record中logistic_o... 阅读全文
摘要:
@SuppressWarnings("unchecked") public List getAllLogisticsOrderType() { String sql = "from LogisticsOrderType t where t.status='A' and t.warehouseUsed=null"; return hibernateTemplate.find(sql + " order by t.id asc"); } List olist = logisticsOrdersTypeService.get 阅读全文
摘要:
最近在做下拉框,里面放入值大概有这几种 //仓库业务类型 第一种 model.addAttribute("warehouseBizTypeList", basePropertyService.loadPropertyDicByPropertyId(PropertyDictionary.WAREHOUSE_BIZ_TYPE)); //所属客户:分部 第二种 model.addAttribute("customerBelongedList",customerInfoService.loadBelongedCustomer());第一种是放入数据字典/** * 阅读全文
摘要:
1,关于判断两个值是否相等 equal 和==是有区别到2,判断一个数组集合 List是否为空 这个不能用"==null或者equal"要用isEmpty() , 对于不等于加一个!3,if里new一个对象,该对象为私有的,括号外部的不好访问4, trim()这是一个很常见的函数,他的所用是去掉字符序列左边和右边的空格,如字符串str = " ai lafu yo ";str = trim(str);cout << str;输出的将是"ai lafu yo"ps,这些都是再小不过的基础知识,说来很丢脸,有时候不知到还能折腾 阅读全文
摘要:
注意标签要写在标签里面*所属客户: 阅读全文