随笔分类 -  其他

摘要:第一种解决办法 npm config set strict-ssl false 第二种解决办法 换http连接,https连接由于证书的问题会报错 阅读全文
posted @ 2024-01-24 15:01 起风了1573 阅读(92) 评论(0) 推荐(0) 编辑
摘要:1 npx serve 2 brew install mkcert 3 新建目录,存放证书,在新目录执行,mkcert 192.168.31.66 (本机ip) 4 pwd 查看当前目录 5 在项目执行 npx serve --ssl-cert /Users/da/Desktop/dyl/doc/s 阅读全文
posted @ 2023-10-23 19:29 起风了1573 阅读(34) 评论(0) 推荐(0) 编辑
摘要:onChange={(value: any) => { let val = Number(value); if (val < 1) { value = ''; setDeviceNumber(''); } else { setDeviceNumber(Number(value.replace(/[^ 阅读全文
posted @ 2023-10-11 11:57 起风了1573 阅读(711) 评论(0) 推荐(0) 编辑
摘要:Mac下升级ruby至最新版本 Mac自身的ruby 版本 2.x,通过ruby -v可以查看版本号。为更新到ruby的最新版本,可通过以下命令解决:brew updatebrew install ruby执行完命令后,ruby -v后其实还是原来的版本👌,这是因为环境变量没有配置。因此,还有一个 阅读全文
posted @ 2023-03-29 18:41 起风了1573 阅读(1398) 评论(0) 推荐(0) 编辑
摘要:oninput="value=value.replace(/[^\d.]/g, '').replace(/\.{2,}/g, '.').replace('.', '$#$').replace(/\./g,'').replace('$#$', '.').replace(/^(\-)*(\d+)\.(\ 阅读全文
posted @ 2023-03-14 12:07 起风了1573 阅读(59) 评论(0) 推荐(0) 编辑
摘要:vue3 直接用 <template> <div class="plantingTrees"> <ul class="shop"> <li v-for="item in items"> <span>{{ item.text }}</span> <span>{{ item.price }}</span 阅读全文
posted @ 2023-03-09 10:33 起风了1573 阅读(78) 评论(0) 推荐(0) 编辑
摘要:https://rinkebyfaucet.com/ https://faucets.chain.link/rinkeby 阅读全文
posted @ 2022-07-28 14:50 起风了1573 阅读(104) 评论(0) 推荐(0) 编辑
摘要:1. 打开 Windows PowerShell 输入命令:set-ExecutionPolicy RemoteSigned 输入命令:set-ExecutionPolicy -Scope CurrentUser 设置:RemoteSigned 2. 执行 get-ExecutionPolicy 3 阅读全文
posted @ 2022-01-25 17:32 起风了1573 阅读(400) 评论(0) 推荐(0) 编辑
摘要:https://juejin.cn/post/7054809972835778568?utm_source=feed_1&utm_medium=feed&utm_campaign=juejin1week_0119 阅读全文
posted @ 2022-01-19 16:27 起风了1573 阅读(18) 评论(0) 推荐(0) 编辑
摘要:<a href="tg://join"></a> 阅读全文
posted @ 2021-12-02 11:35 起风了1573 阅读(109) 评论(0) 推荐(0) 编辑
摘要:canvasFun() { html2canvas(document.querySelector("#canvas"), { useCORS: true, }).then((canvas) => { console.log(canvas); var dataURL = canvas.toDataUR 阅读全文
posted @ 2021-11-25 15:07 起风了1573 阅读(135) 评论(0) 推荐(0) 编辑
摘要:.list{ overflow-x:auto; scrollbar-color: transparent transparent; } 阅读全文
posted @ 2021-10-15 16:57 起风了1573 阅读(331) 评论(0) 推荐(0) 编辑
摘要:git checkout -b dev-dyl origin/dev-dyl dev-dyl 远程分支 阅读全文
posted @ 2021-10-12 17:50 起风了1573 阅读(213) 评论(0) 推荐(0) 编辑
摘要:// 移动端 宽度可以自定义 @media screen and(max-width:750px) { } 阅读全文
posted @ 2021-10-09 14:19 起风了1573 阅读(21) 评论(0) 推荐(0) 编辑
摘要:git config --global github.token mytoken 阅读全文
posted @ 2021-10-08 17:18 起风了1573 阅读(150) 评论(0) 推荐(0) 编辑
摘要:npm install js-md5 (2)main.js中引入 import md5 from 'js-md5'; Vue.prototype.$md5 = md5; (3)使用 this.$md5("加密内容") 阅读全文
posted @ 2021-05-25 16:58 起风了1573 阅读(205) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_39843414/article/details/106893949 阅读全文
posted @ 2021-05-13 10:32 起风了1573 阅读(17) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_52710450/article/details/116448312?utm_medium=distribute.pc_category.none-task-blog-hot-1.nonecase&depth_1-utm_source=dis 阅读全文
posted @ 2021-05-08 10:47 起风了1573 阅读(31) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_52546522/article/details/116453957?utm_medium=distribute.pc_category.none-task-blog-hot-1.nonecase&depth_1-utm_source=dis 阅读全文
posted @ 2021-05-08 10:39 起风了1573 阅读(36) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/weixin_47821281/article/details/115672118?utm_medium=distribute.pc_category.none-task-blog-hot-1.nonecase&dist_request_id=&depth 阅读全文
posted @ 2021-04-15 16:55 起风了1573 阅读(31) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示