摘要:
最近开发时遇到了上传失败的情况,提示: 413 Request Entity Too Large(请求实体太大) 因为上传通过代理服务器Nginx,因此可以 修改代理服务器Nginx 的相关配置来解决。 作为反向代理服务器 , nginx最先收到client请求 ,一定会有一些限制 .所以要修改Ng 阅读全文
摘要:
关闭IIS服务.bat (注意:文本格式为ANSI) @echo off taskkill /f /im w3wp.exe iisreset /STOP taskkill /f /im w3wp.exe 开启IIS服务.bat (注意:文本格式为ANSI) @echo off net start i 阅读全文
摘要:
// base64 转 二进制流(blob) dataURLtoBlob(dataurl) { var arr = dataurl.split(","), mime = arr[0].match(/:(.*?);/)[1], bstr = atob(arr[1]), n = bstr.length, 阅读全文
摘要:
原因 - svn update冲突删掉了冲突文件 svn更新的时候,因为冲突,SVN会删掉这个冲突的文件,并且报错,让你去cleanup(不知道什么时候开始,svn就自己删掉冲突的文件了) 致的问题 - update需要cleanup,cleanup找不到文件地址开始报上述错误 由于冲突文件被删除, 阅读全文
摘要:
1、加了--prod参数后,angular-cli会把用不到的包都删掉 //package.json 中 "scripts": { ... "build": "ng build --prod" ... } 2、nginx开启gzip优化、在nginx中server或http内上,添加这段代码 gzi 阅读全文
摘要:
spring security social 访问 http://auth.xxx.com/api/auth/wxgzh 时报错: Whitelabel Error Page This application has no explicit mapping for /error, so you ar 阅读全文
摘要:
<image :src="imgVerificationCode" @click="getVerificationCode" class="imageCode"></image> arrayBufferToBase64(buffer) { var binary = ''; var bytes = n 阅读全文
摘要:
1.在工具栏的”视图“下打开终端或者ctrl+`2.安装jsencrypt ,安装的东西都会在node_module下 npm i jsencrypt 3.在需要加密的文档中引入 import JSEncrypt from '../../node_modules/jsencrypt/bin/jsen 阅读全文
摘要:
js取url各部分数据 //使用字符索引对URL进行解析 parseURL(url):any{ //解析协议 var protocal = url.substring(0, url.indexOf(':')); //alert('protocal:' + protocal); //解析域名和端口 v 阅读全文
摘要:
Mysql5+处理办法: mysql -hlocalhost -uroot -pgrant all privileges on *.* to root@"%" identified by ".";flush privileges;Mysql8+处理办法: mysql -hlocalhost -uro 阅读全文