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