06 2021 档案
java递归查询部门
摘要:@Datapublic class SysDeptModel { private Long id; private String name; private Long pid; private List<SysDeptModel> childrens;}// List<SysDept> sysDep
阅读全文
使用jOrgChart插件生成树形图
摘要:引入 <link rel="stylesheet" href="asset/jquery.jOrgChart.css"> <script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script><script src="as
阅读全文
让你页面上所有的非http请求强制转成https请求
摘要:<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">iframe请求时如果网站加了证书会遇到http请求被浏览器拦下的问题,解决方案为升级HTTPS
阅读全文