摘要: https://az764295.vo.msecnd.net/stable/ea3859d4ba2f3e577a159bc91e3074c5d85c0523/VSCodeUserSetup-x64-1.52.1.exe 将官方下载地址的域名更换为国内镜像即可: vscode.cdn.azure.cn 阅读全文
posted @ 2021-01-21 11:42 万斗司 阅读(14645) 评论(0) 推荐(11) 编辑
摘要: downloadFile: function(e) { wx.showLoading({ title: '下载中...', }); var url = e.currentTarget.dataset.info;//下载文件后端路径 //获取文件后缀 let ext = url.substr(url. 阅读全文
posted @ 2020-10-13 14:08 万斗司 阅读(668) 评论(0) 推荐(0) 编辑
摘要: 实现防抖(一般用于输入框搜索) 说明:在调用debounce函数后1000毫秒后才会回调,1000毫秒内再次调用将延时回调。 1 var clearTime; 2 function debounce(callback,time = 1000){ 3 clearTimeout(clearTime); 阅读全文
posted @ 2020-08-25 15:33 万斗司 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 进入项目目录,先把本地缓存删除,然后再提交。 git rm -r --cached . git add . git commit -m '提交描述' 忽略不需要和管理的文件(夹) 1、git rm -r --cached .idea/ 2、git add . 3、git commit -m 'del 阅读全文
posted @ 2020-04-23 22:14 万斗司 阅读(364) 评论(0) 推荐(0) 编辑
摘要: phpstorm 习惯设置 1. 字体:Source Code Pro 大小:14 链接: https://pan.baidu.com/s/1HLpbduBHFvbq1a10QV4uCg 提取码: ymn3 2. keymap:eclipse 3. 引号(中括号)包围:surr 4. 行尾加分号:C 阅读全文
posted @ 2019-11-21 15:39 万斗司 阅读(222) 评论(0) 推荐(0) 编辑
摘要: Jmeter服务器压力测试使用说明 Apache JMeter是Apache组织开发的基于Java的压力测试工具。 官方地址:http://jmeter.apache.org/download_jmeter.cgi 1. 聚合报告字段说明: a. Label: 定义的HTTP请求名称 b. Samp 阅读全文
posted @ 2019-11-19 16:36 万斗司 阅读(685) 评论(0) 推荐(0) 编辑
摘要: websocket + TP5.1 + apache 配置步骤 1. https ssl配置好 2. 检查php环境是否满足Workerman要求 curl -Ss http://www.workerman.net/check.php | php 如果脚本中全部提示ok,则代表满足WorkerMan 阅读全文
posted @ 2019-11-14 15:22 万斗司 阅读(1605) 评论(0) 推荐(0) 编辑
摘要: TP5 用cron实现linux定时任务 1) tp5的控制器内容: 2) 新建文件:crontab.sh,写入以下内容,并放在项目的根目录,(如果是TP5,与public目录平级) 说明:public为tp5的执行目录,test/test/testCrontab为:模块/控制器/操作 3). li 阅读全文
posted @ 2019-10-31 16:56 万斗司 阅读(1573) 评论(0) 推荐(0) 编辑
摘要: 根目录下,.htaccess文件 <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUE 阅读全文
posted @ 2019-10-30 15:43 万斗司 阅读(1706) 评论(0) 推荐(0) 编辑
摘要: git 常用命令操作 1. 上传大文件(>100M)后,不能push到远程,删掉大文件也不可以。用以下方法逐条运行可以处理: 报错1:this exceeds file size limit of 100.0 MB 报错2:remote: error: hook declined to update 阅读全文
posted @ 2019-10-16 10:30 万斗司 阅读(121) 评论(0) 推荐(0) 编辑