上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 46 下一页
摘要: // base64 转 二进制流(blob) dataURLtoBlob(dataurl) { var arr = dataurl.split(","), mime = arr[0].match(/:(.*?);/)[1], bstr = atob(arr[1]), n = bstr.length, 阅读全文
posted @ 2022-10-10 13:33 三瑞 阅读(510) 评论(0) 推荐(0)
摘要: 原因 - svn update冲突删掉了冲突文件 svn更新的时候,因为冲突,SVN会删掉这个冲突的文件,并且报错,让你去cleanup(不知道什么时候开始,svn就自己删掉冲突的文件了) 致的问题 - update需要cleanup,cleanup找不到文件地址开始报上述错误 由于冲突文件被删除, 阅读全文
posted @ 2022-10-09 10:25 三瑞 阅读(938) 评论(0) 推荐(0)
摘要: 1、加了--prod参数后,angular-cli会把用不到的包都删掉 //package.json 中 "scripts": { ... "build": "ng build --prod" ... } 2、nginx开启gzip优化、在nginx中server或http内上,添加这段代码 gzi 阅读全文
posted @ 2022-10-08 22:59 三瑞 阅读(337) 评论(0) 推荐(0)
摘要: spring security social 访问 http://auth.xxx.com/api/auth/wxgzh 时报错: Whitelabel Error Page This application has no explicit mapping for /error, so you ar 阅读全文
posted @ 2022-09-28 22:35 三瑞 阅读(234) 评论(0) 推荐(0)
摘要: <image :src="imgVerificationCode" @click="getVerificationCode" class="imageCode"></image> arrayBufferToBase64(buffer) { var binary = ''; var bytes = n 阅读全文
posted @ 2022-09-21 22:42 三瑞 阅读(747) 评论(0) 推荐(0)
摘要: 1.在工具栏的”视图“下打开终端或者ctrl+`2.安装jsencrypt ,安装的东西都会在node_module下 npm i jsencrypt 3.在需要加密的文档中引入 import JSEncrypt from '../../node_modules/jsencrypt/bin/jsen 阅读全文
posted @ 2022-09-18 15:16 三瑞 阅读(2169) 评论(0) 推荐(0)
摘要: js取url各部分数据 //使用字符索引对URL进行解析 parseURL(url):any{ //解析协议 var protocal = url.substring(0, url.indexOf(':')); //alert('protocal:' + protocal); //解析域名和端口 v 阅读全文
posted @ 2022-09-17 14:45 三瑞 阅读(169) 评论(0) 推荐(0)
摘要: Mysql5+处理办法: mysql -hlocalhost -uroot -pgrant all privileges on *.* to root@"%" identified by ".";flush privileges;Mysql8+处理办法: mysql -hlocalhost -uro 阅读全文
posted @ 2022-09-16 21:53 三瑞 阅读(230) 评论(0) 推荐(0)
摘要: 报下面错我的原因是: security.oauth2.client.clientId =security.oauth2.client.clientSecret =这个两个值配置错误 org.springframework.beans.factory.UnsatisfiedDependencyExce 阅读全文
posted @ 2022-09-07 17:11 三瑞 阅读(916) 评论(0) 推荐(0)
摘要: HBuilderx下载地址: https://dcloud.io/hbuilderx.html uniapp文档:https://uniapp.dcloud.net.cn/quickstart.html# native.js:http://ask.dclound.net.cn/article/114 阅读全文
posted @ 2022-09-05 22:25 三瑞 阅读(305) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 46 下一页