摘要: 1、解压文件夹 2、我的电脑->属性->高级->环境变量->系统变量->path中添加mysql解压文件夹bin目录的位置 D:\mysql-5.7.25-winx64\bin 3、在解压的文件夹下新建data文件夹与mysql.ini文件 mysql.ini中添加以下代码 1 [mysql] 2 阅读全文
posted @ 2021-07-13 11:00 一江春水向东刘小姐 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1、中文Chinese (Simplified) Language Pack for Visual Studio Code 2、修改标签对Auto Rename Tag3、括号染成相同的颜色Bracket Pair Colorizer 4、注释( // *表示重点,!表示错误和警告,?表示询问和问题 阅读全文
posted @ 2021-07-12 10:40 一江春水向东刘小姐 阅读(125) 评论(0) 推荐(0) 编辑
摘要: >git pull origin masterremote: CODING 提示: Authentication failed.remote: 认证失败,请确认您输入了正确的账号密码。fatal: Authentication failed for 'https://e.coding.net/xxx 阅读全文
posted @ 2021-07-02 16:12 一江春水向东刘小姐 阅读(1393) 评论(0) 推荐(0) 编辑
摘要: <scroll-view scroll-y> <view wx:for="{{videoList}}" wx:key="id"> <video src="{{item.data.urlInfo.url}}" bindplay="handlePlay" id="{{item.data.coverUrl 阅读全文
posted @ 2021-06-29 11:00 一江春水向东刘小姐 阅读(157) 评论(0) 推荐(0) 编辑
摘要: let f=document.getElementById('screen-third') 1、console.log("f",f.getBoundingClientRect().height); 2、let k= document.defaultView.getComputedStyle(f,'' 阅读全文
posted @ 2021-03-29 18:41 一江春水向东刘小姐 阅读(275) 评论(0) 推荐(0) 编辑
摘要: vue生成二维码图片,这里使用的是qrcode.js 这个插件 1、下载插件 npm install --save qrcodejs2 2、组件内使用 <template> <Button type="primary" size="small" @click="getScan()">扫一扫</But 阅读全文
posted @ 2021-03-16 10:06 一江春水向东刘小姐 阅读(2164) 评论(2) 推荐(1) 编辑
摘要: 如果你的亲人是普通阶层,那对于人生中一些大事来说,他们给的建议往往就是普通阶层的思维,他们的阶层就是他们一生思维决策的结果,如果你的目标是跳出本阶层,那最好只把他们的建议当成参考。 阅读全文
posted @ 2021-01-11 17:35 一江春水向东刘小姐 阅读(87) 评论(0) 推荐(0) 编辑
摘要: 1、web控件开发包:32位,64位,WEB3.2无插件开发包,注意:这个位数不是电脑的位数,是浏览器的位数; 2、像我的电脑是64位的,但是我的IE浏览器是32位的,我就需要安装32位的控件开发包,打开控件开发包下面的demo文件夹 CH_WEB3.0控件开发包V1.1.0_Win32\demo\ 阅读全文
posted @ 2021-01-11 16:13 一江春水向东刘小姐 阅读(2388) 评论(0) 推荐(0) 编辑
摘要: 1 'select u.*, wu.open_id from web_user u left join web_wechat_user wu on u.user_id = wu.user_id and wu.open_id=? where mail=? and pwd=?' u 表的别名 web_u 阅读全文
posted @ 2020-12-11 11:33 一江春水向东刘小姐 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 第一种: 1、查看所有的端口 1 netstat -ano 8080(冲突端口号) 2、打开任务管理器,找到其所对应的进程,结束进程 第二种: 1、查看所有的端口 1 netstat -ano|findstr 8080(冲突端口号) 2、 1 tasklist|findstr "10744" 3、 阅读全文
posted @ 2020-12-07 17:36 一江春水向东刘小姐 阅读(6122) 评论(0) 推荐(1) 编辑