血翼残飞

导航

上一页 1 2 3 4 5 6 ··· 8 下一页

2022年12月23日 #

pojo忽略表字段映射

摘要: @TableField(exist = false)//忽略表字段 阅读全文

posted @ 2022-12-23 16:27 血翼残飞 阅读(56) 评论(0) 推荐(0)

2022年7月7日 #

ztree.js 初始化数据,及选父不选子,选子不选父

摘要: var settingMenu = { check: { enable: true, chkStyle: 'checkbox' // chkboxType: {"Y": "s", "N": "ps"} }, view: { showLine: true,//是否显示节点之间的连线。 showIcon 阅读全文

posted @ 2022-07-07 14:06 血翼残飞 阅读(346) 评论(1) 推荐(0)

mybatis 执行函数 call{} 报错Encountered unexpected token: "{" "{" at line 1, column

摘要: mapper 方法加注解@InterceptorIgnore(tenantLine = "true") 阅读全文

posted @ 2022-07-07 12:01 血翼残飞 阅读(1234) 评论(0) 推荐(0)

2021年12月31日 #

刷新页面后强制让页面回到顶部

摘要: $(window).scrollTop(0); $('html ,body').animate({ scrollTop: -10 }, 300); setTimeout(function(){$(window).scrollTop(0)},10); 阅读全文

posted @ 2021-12-31 12:04 血翼残飞 阅读(109) 评论(0) 推荐(0)

2021年12月9日 #

是纯数字和纯字母的td没有换行

摘要: style="word-break:break-all;" 阅读全文

posted @ 2021-12-09 11:17 血翼残飞 阅读(36) 评论(0) 推荐(0)

2021年12月2日 #

mysql 函数

摘要: 1.数字处理 2.字符串 3.日期 阅读全文

posted @ 2021-12-02 21:29 血翼残飞 阅读(25) 评论(0) 推荐(0)

2021年11月9日 #

mysql update where in (查询表)

摘要: update table1 t set t.column1=0 WHERE t.id in (SELECT tid FROM table2 b)优化update table1 t ,table2 b set t.column1=0 where t.id=b.id ; 阅读全文

posted @ 2021-11-09 15:27 血翼残飞 阅读(2349) 评论(0) 推荐(0)

2021年8月16日 #

修改mysql中所有已经定义到的definer

摘要: 修改mysql中所有已经定义到的definer? 由于前期在测试库上开发的缘故,我们经常定义到的definer为`root`@`%`,后来搬移到生产库上又得改回来,存在着大量的更新,上百个的视图,函数等一个个改不免太麻烦并且也可能遗漏。如下为总结出的方便修改所有definer的方法,可以直到查漏补缺 阅读全文

posted @ 2021-08-16 13:30 血翼残飞 阅读(605) 评论(1) 推荐(0)

2021年3月16日 #

js document创建form post 提交

摘要: var form = document.createElement('form'); form.action = 'xxxx.action'; form.method = 'post'; form.style.display = 'none'; var input = document.create 阅读全文

posted @ 2021-03-16 09:40 血翼残飞 阅读(753) 评论(0) 推荐(0)

2021年1月7日 #

json 转有序map

摘要: LinkedHashMap<String, Object> dataMap = JSONObject.parseObject(String.valueOf(kjdataMap.get("DATAS")), new TypeReference<LinkedHashMap<String, Object> 阅读全文

posted @ 2021-01-07 09:27 血翼残飞 阅读(550) 评论(0) 推荐(0)

上一页 1 2 3 4 5 6 ··· 8 下一页