后台数据 Tymeleaf遍历输出Key和Value <tr th:each="item,cont:${content.printValues.values}"> <td th:text="${cont.current.key}"></td><!-- key--> <td th:text="${…
问题 通过 height 设置百分比的方式, 可以自适应高度, 但是不会出现滚动条.固定值 height 会出现滚动条, 但是各种屏幕的高度不能自适应. 解决 var screenHeight = window.innerHeight; 先拿到屏幕高度↑自定义高度需求1: 超出屏幕高度出现滚动条:元素高度 = 屏幕高度即可需求2:&nb…
mysql数据库中的关于查询日期的一些操作如下: --今天 select * from 表名 where to_days(时间字段名) = to_days(now()); --昨天 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1 --本周 SELECT * FRO…
<select name="ChanneltypeID" class="layui-select"> <option th:each="dict : ${type}" th:value="${dict.ChannelTypeID}" th:text="${dict.ChannelTypeName }"> </selec…
屏蔽证书验证 以下先不执行 用户根目录下找到.gitconfig [https] sslVerify = false proxy = http://3zi.cn/test.git proxy后边跟的是需要屏蔽的网站 关掉安全验证 先执行下面的看有没有问 没问题就不做上面的操作了 如果连接git是报错unable to acces…
使用byte数组时给定指定的长度 但是该属性的数据长度不是固定的 可能小于等于该长度 当数据长度小于数组给定的长度时 例如: //指定长度100 private byte[] bytes = new byte[100]; //此处省略获取数据 byte[]中的数据实际长度为30…
Java中的 split 函数是用于按指定字符(串)或正则去分割某个字符串,结果以字符串数组形式返回; 例如: String str="1234@abc"; String[] a = str.split("@"); System.out.println("处理结果: "+a[0]+","+a[1]); //输出的…
新建类ImgesUploadConfig 继承WebMvcConfigurer 代码如下,复制粘贴稍作改动即可: import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.…
webuploader工具官网:http://fex.baidu.com/webuploader/ webuploader自行官网下载 博主项目GitHub地址:https://github.com/AnRan-727/webuploader 上传文件按钮Html <div id="uploader" class="wu-example"&g…
webuploader工具官网:http://fex.baidu.com/webuploader/ webuploader自行官网下载 博主项目GitHub地址:https://github.com/AnRan-727/webuploader 上传文件按钮Html <div id="uploader" class="wu-example"&g…