08 2018 档案
摘要:log4j.xml src/main/resources <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE log4j:configuration PUBLIC "-//APACHE//DTD LOG4J 1.2//EN" "log4j.dtd"><l
阅读全文
摘要:ajax小技巧,防止多次点击发送多个请求 var isAjax=false;$("btn").click(function(){if(isAjax)return; isAjax=true;setTimeout(function(){alert(123);isAjax=false;},2000);})
阅读全文
摘要:百度直接搜IP可以查看本机外网IP ipconfig在控制台查看的是内网IP
阅读全文
摘要:比如 contentType : 'application/json;charset=UTF-8', 或者 contentType : 'text/html;charset=UTF-8', 如果不加此参数,会出现不可预知的错误! 比如某些加了安全控件的系统,不加此参数,会直接报错403,系统认为你的
阅读全文
摘要:表格某一行某一列超长 截取一部分 并增加...效果 增加titile <td title="+data.publisherVer">mc.subTheString(data.publisherVer,10)</td> mc.subTheString = function(str,length) {
阅读全文
摘要:mysq数据库管理工具navicat基本使用方法 https://www.cnblogs.com/neuedu/p/5876874.html
阅读全文
摘要:Navicat连接mysql8.0.1版本出现1251--Client does not support authentication protocol requested by server的解决 转载自:https://blog.csdn.net/XDMFC/article/details/80
阅读全文
摘要:先要配置环境变量 MYSQL_HOME : D:\mysql-8.0.11-winx64 Path:%MYSQL_HOME%\bin 1)新建MYSQL_HOME变量,并配置:C:\Program Files\MySQL\MySQL Server 5.6 MYSQL_HOME:C:\Program
阅读全文
摘要:Windows 上安装 MySQL Windows 上安装 MySQL 相对来说会较为简单,你需要在 MySQL 下载中下载 Windows 版本的 MySQL 安装包。 Download Link: https://dev.mysql.com/downloads/mysql/ 点击 Downloa
阅读全文
摘要:$(".selected input").on('input',function(e){ cc.search(); });
阅读全文
摘要:该类工程环境搭建和启动方法 配置 jdk tomcat maven(setting.xml) download the code import the project-- existing maven project set up a tomcat server and import the pro
阅读全文
摘要:想刷新树,但是根据API来的refresh无效 https://bbs.csdn.net/topics/391881528 这个博客的作者的三个尝试都是根据API来的,都是无效的,比如refresh 建议直接用init重新初始化,亲测有用 https://tieba.baidu.com/p/3558
阅读全文
摘要:@ResponseBody @RequestMapping @RequestBody var $btnno2 = $(".mask .btn1 button.ok"); //确认按钮绑定 $btnno2.click(function() { var nodes = treeObj.getChecke
阅读全文
摘要:<insert id="batchInsert" useGeneratedKeys="true" keyProperty="id" parameterType="java.util.List" > INSERT INTO `oauth_client_method` (appkey,method) V
阅读全文
摘要:var nodes1 = [ { name: "小学", iconOpen: folderOpen, iconClose: folder, chkDisabled :true, children: [ { name: "语文", iconOpen: folderOpen, iconClose: fo
阅读全文
摘要:后端 后端的TreeBean import java.util.List; public class TreeBean implements Serializable { private String id; private String name; private int floor; priva
阅读全文
摘要:zTree异步加载 具体详见API文档: http://www.treejs.cn/v3/api.php 重点是: setting里面的async相关属性 回调函数callBack里面的onAsyncSuccess : ztreeOnAsyncSuccess 参考文章 https://blog.cs
阅读全文
摘要:具体详见API文档: http://www.treejs.cn/v3/api.php 常见setting 异步: var setting = { async : { autoParam : [ "pId" , "floor" ], enable : true, type : "post", url
阅读全文
摘要:zTree v3.5 Demo 演示 http://www.treejs.cn/v3/demo.php#_101 纯静态zTree <ul id="treeAdmin" class="ztree"></ul> 或者<div id="treeAdmin" class="ztree"></div> va
阅读全文