摘要: /*by:https://www.cnblogs.com/zzz7/p/15593167.html*/page { height: 100%; width:100%; background-color: #F8F8F8; } .container{height: 100%;width: 100%;} 阅读全文
posted @ 2024-04-27 17:22 Atom++ 阅读(1) 评论(0) 推荐(0) 编辑
摘要: ab -c200 -n1000 http://localhost【并发200】每次同时请求200,每人1000次 阅读全文
posted @ 2023-09-19 21:11 Atom++ 阅读(56) 评论(0) 推荐(0) 编辑
摘要: git下载:https://git-scm.com/download/win(此处下载非常慢,用迅雷或者挂梯子)配制本地: git config --global user.name "xxxx"git config --global user.email "xxxx@qq.com"生成ssh密钥与 阅读全文
posted @ 2023-08-28 22:42 Atom++ 阅读(14) 评论(0) 推荐(0) 编辑
摘要: Nginx: location / {index index.html;index index.php;# thinkphp6.0 的 nginx 伪静态配置if (!-e $request_filename) {rewrite ^(.*)$ /index.php?s=/$1 last;break; 阅读全文
posted @ 2023-04-27 17:06 Atom++ 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1.创建自定义指令:https://www.kancloud.cn/manual/thinkphp6_0/1037651 php think make:command Rd rd会生成app\command\Rd.php,编辑Rd.php <?php declare (strict_types = 阅读全文
posted @ 2022-07-12 20:49 Atom++ 阅读(296) 评论(0) 推荐(0) 编辑
摘要: src/main.js 入口js,注册全局组件(vue cookie element store route)等,渲染app组件到页面 登录: 1.src/permission.js:登录时,先验证是否存在token,存在,再验证有什么权限==》跳到后台,不存在==》跳转login登录页 2.src 阅读全文
posted @ 2022-06-05 16:23 Atom++ 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 转载:https://blog.csdn.net/weixin_43961117/article/details/117399184 1.filter是一个数据的过滤器,他的回调参数是布尔值,他的主要功能就是过滤数据,将符合条件的过滤的所有数据存储起来 let num=[10,20,30,40,50 阅读全文
posted @ 2022-06-01 11:17 Atom++ 阅读(34) 评论(0) 推荐(0) 编辑