摘要: 1、js var conditionJson = { name: staffName, sex: sex, }; var query = {condition: JSON.stringify(conditionJson)}; $('#tableId').bootstrapTable("refresh 阅读全文
posted @ 2021-08-05 15:42 唏嘘- 阅读(1637) 评论(0) 推荐(0) 编辑
摘要: 1、异常信息 mybatis出现Result Maps collection already contains value for…BaseResultMap的错误, 2、异常原因 有可能是generatorSqlmapCustom逆向工程的原因 假如使用generatorSqlmapCustom逆 阅读全文
posted @ 2021-08-05 15:17 唏嘘- 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1、正则表达式 let number = "值";var num = /^[0-9]+.?[0-9]*/; //判断字符串是否为数字//判断正整数/[1−9]+[0−9]∗]∗/ if (!num.test(nubmer)) { alert(“请输入数字”); } 阅读全文
posted @ 2021-08-05 15:03 唏嘘- 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 1、bootstrapTable //插入一条数据,在日期单元格实现 可选layui日期控件, 每新增一行数据,监听需要日期的单元格,取值然后更新单元格值 $('#tableId').bootstrapTable({ onClickCell: function (field, value, row, 阅读全文
posted @ 2021-08-05 14:54 唏嘘- 阅读(824) 评论(0) 推荐(0) 编辑
摘要: 1、java public static String ImageToBase64(String src){ if (src == "" || src == null) { return ""; } File file = new File(src); if (!file.exists()) { r 阅读全文
posted @ 2021-08-05 14:40 唏嘘- 阅读(1064) 评论(0) 推荐(0) 编辑
摘要: 1、html <div class="layui-input-block" style="width: 230px ;margin-left: 4px"> <input value="${item.icon!}" type="text" id="iconPicker" lay-filter="ico 阅读全文
posted @ 2021-08-05 14:14 唏嘘- 阅读(1319) 评论(0) 推荐(0) 编辑
摘要: 1、单行省略展示 <div class="test-text"> aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa </div> .test-text { width: 100px; white-space: nowrap; overflow: hidden; t 阅读全文
posted @ 2021-08-05 13:58 唏嘘- 阅读(475) 评论(0) 推荐(0) 编辑
摘要: 1、使用的单元格属性cellStyle column:[ { field: 'birthday', title: '生日', align: 'center', cellStyle: columnColorFunction } ] function columnColorFunction (value 阅读全文
posted @ 2021-08-05 12:04 唏嘘- 阅读(2060) 评论(0) 推荐(0) 编辑
摘要: //以下方法在浏览器同一窗口操作self.location.href="/url" 当前页面打开URL页面 location.href="/url" 当前页面打开URL页面 windows.location.href="/url" 当前页面打开URL页面,前面三个用法相同。 parent.locat 阅读全文
posted @ 2021-08-05 11:47 唏嘘- 阅读(1830) 评论(0) 推荐(0) 编辑
摘要: 1、 layui在tab切换时是利用tab下的div显示和隐藏来实现的,而echarts在你页面刷新的时候就渲染出来了, 而第二个tab已经隐藏了,导致echarts自动获取dom的宽高无效,所以使用的是echarts默认的高宽,通过监听tab切换事件然后执行resize进行echarts的重新 h 阅读全文
posted @ 2021-08-05 11:05 唏嘘- 阅读(1266) 评论(0) 推荐(0) 编辑