摘要:
http://www.mizuiren.com/blog/349.html 这篇文章中是说赋值不行,取值可以的原因和处理方法,我遇到的情况不一样,但还是想分享一下 这个问题花了将近一天时间怎么回事???最后原因是input的id或name重复了 1、首先介绍下取值方式吧 <div id="cs"> 阅读全文
摘要:
FORM提交有返回值有两方法: 1、在form下增加一个iframe,用于跳转,这样就解决了不刷新的问题; 在js中接收参数(text就是后端传回来的参数),这样就解决了返回值的问题; 同时因为button是submit类型,具有表单验证的功能 <div> <form target='iframeF 阅读全文
摘要:
分组后A列最大的B列 ,分组:employee_id A列:log_date B列:old_salary select * from "plch_emp_log" order BY "employee_id","log_date"; select "employee_id",replace(lpad 阅读全文
摘要:
String[] ids String id List<String> idList 1、String[]转String String id= String.join(",", ids); 2、String转String[] String[] ids = id.split(","); 3、Strin 阅读全文
摘要:
重点注意():验证License时引入的包别用word的包,否则还是有水印 import com.aspose.cells.License; 1、license.xml 放在resources路径下 <?xml version="1.0" encoding="UTF-8" ?><License> < 阅读全文
摘要:
1、license.xml <?xml version="1.0" encoding="UTF-8" ?><License> <Data> <Products> <Product>Aspose.Total for Java</Product> <Product>Aspose.Words for Ja 阅读全文
摘要:
一、安装工具 1、安装 解压 elasticsearch-7.3.2-windows-x86_64.zip https://www.elastic.co/cn/downloads/past-releases#elasticsearch 2、elasticsearch-analysis-ik-7.3. 阅读全文
摘要:
application.yml文件中配置如下 es: #集群名 clusterName: elasticsearch 1、@Value("${es.clusterName}") 在controller、service里可以,在工具类中(Utils)不行 2、@ConfigurationPropert 阅读全文
摘要:
java中获取实体类列表中的某个字段 List<SysUser> sysUserList List<String> usernameList = sysUserList.stream().map(SysUser::getUsername).collect(Collectors.toList()); 阅读全文
摘要:
jeecgBoot切换<a-tabs>时总是重新加载,不方便把已经查询好的内容进行对比。 <a-tabs>所在的地址: \src\components\layouts\TabLayout.vue 要修改的位置所在的地址是: \src\components\layouts\RouteView.vue 阅读全文