摘要: 先打开一个cmd:net stop mysql //关闭mysql服务mysqld --shared-memory --skip-grant-tables//跳过登录密码在不关闭第一个CMD的情况下打开第二个cmdmysqlupdate user set authentication_string= 阅读全文
posted @ 2019-03-24 11:17 未输 阅读(213) 评论(0) 推荐(0)
摘要: 1、修改hosts文件将0.0.0.0 account.jetbrains.com添加到hosts文件最后,注意hosts文件无后缀,如果遇到无法修改或权限问题,可以采用覆盖的方法去替换hosts文件修改后请检查hosts文件是否修改,激活码无法激活的原因99.99%是因为hosts没有修改正确 W 阅读全文
posted @ 2018-11-10 15:51 未输 阅读(231) 评论(0) 推荐(1)
摘要: 原因:for循环执行时不会等待异步函数执行。 解决方法: 1、改为递归函数(暂时不会)。 2、构建一个自执行函数传参(匿名函数) 参考::https://www.cnblogs.com/csuwujing/p/8021913.html 例如 for (var i = 0; i < files.len 阅读全文
posted @ 2018-10-05 18:22 未输 阅读(1901) 评论(0) 推荐(0)
摘要: 1.退出eclipse 2.到[工程目录下 workspace ]/.metadata/.plugins/org.eclipse.core.runtime 3.把org.eclipse.wst.server.core.prefs和org.eclipse.jst.server.tomcat.core. 阅读全文
posted @ 2018-10-03 19:10 未输 阅读(103) 评论(0) 推荐(0)
摘要: 后台返回值类型 改为:PrintWriter out = response.getWriter();String jsonStr = "{\"success\":\"文件上传成功!\"}";out.write(jsonStr); 前台$.ajax({ type:'POST', url:'url', 阅读全文
posted @ 2018-10-02 15:32 未输 阅读(162) 评论(0) 推荐(0)