06 2020 档案

摘要:查看MySQL服务器最大连接数 show global variables like 'max_connections'; 查看MySQL服务器最大并发连接数(MySQL服务启动到现在,同一时刻并行连接数的最大值) show global status like 'Max_used_connecti 阅读全文
posted @ 2020-06-23 11:11 宋健安 阅读(797) 评论(0) 推荐(0)
摘要:原因是https页面去发送http请求报错(浏览器阻止https发送http请求) 解决方法:页面中的http换成https 阅读全文
posted @ 2020-06-22 16:09 宋健安 阅读(10020) 评论(0) 推荐(0)
摘要:##### 国内镜像源 ##### # 清华:https://pypi.tuna.tsinghua.edu.cn/simple/ # 阿里云:http://mirrors.aliyun.com/pypi/simple/ # 中国科技大学 https://pypi.mirrors.ustc.edu.c 阅读全文
posted @ 2020-06-02 16:56 宋健安 阅读(3224) 评论(0) 推荐(1)
摘要://当你在iframe页面关闭自身时 var index = parent.layer.getFrameIndex(window.name); //先得到当前iframe层的索引 parent.layer.close(index); //再执行关闭 阅读全文
posted @ 2020-06-02 11:59 宋健安 阅读(1957) 评论(0) 推荐(0)
摘要:如在弹框中获取父级勾选的id var checkedArr = []; parent.window.$('input.checkboxItem[type="checkbox"]:checked').each(function (index, elem) { checkedArr.push($(ele 阅读全文
posted @ 2020-06-02 11:54 宋健安 阅读(3563) 评论(0) 推荐(0)
摘要:原因是在nginx配置文件中加入了http重定向到https导致的,解决方法是在.env中加入 ADMIN_HTTPS=true即可 阅读全文
posted @ 2020-06-02 10:43 宋健安 阅读(1948) 评论(0) 推荐(0)