摘要:
Host is blocked because of many connection errors; unblock with ‘mysqladmin flush-hosts’ 解决方法环境:centos7,mysql8 错误:Host is blocked because of many conn 阅读全文
摘要:
//阿拉伯数字转中文数字 function NoToChinese(num) { if (!/^\d*(\.\d*)?$/.test(num)) { alert("Number is wrong!"); return "Number is wrong!"; } var AA = new Array("零", "一", "二", "三", "... 阅读全文
摘要:
/** * for vue: 日期格式化 **/function dateFormat(value, format) { if (typeof(value) == "undefined" || value == null || value == '') { return value; } var date = new Date(value); ... 阅读全文