摘要: 1.swiper 官网地址:https://swiper.com.cn/ 2.表格:vxe-table 官网地址:https://vxetable.cn/#/table/start/install 阅读全文
posted @ 2024-04-26 15:25 小那 阅读(1) 评论(0) 推荐(0) 编辑
摘要: pdf转word等:https://orcc.online/ 时间戳转换:https://orcc.online/timestamp Base64 编码解码: https://orcc.online/base64 URL 编码解码: https://orcc.online/url Hash(MD5/ 阅读全文
posted @ 2024-04-29 09:19 小那 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 1、在文件夹的此电脑,右键,点击管理 2、找到“服务和应用程序”=>“服务”=>在右侧找到mysql=>右键停止=>ok 阅读全文
posted @ 2024-04-26 16:29 小那 阅读(3) 评论(0) 推荐(0) 编辑
摘要: splice() 语法: arrayObject.splice(index,howmany,item1,.....,itemX) 参数说明: 参数描述 index 必需。整数,规定添加/删除项目的位置,使用负数可从数组结尾处规定位置。 howmany 必需。要删除的项目数量。如果设置为 0,则不会删 阅读全文
posted @ 2024-04-24 09:11 小那 阅读(1) 评论(0) 推荐(0) 编辑
摘要: 报错信息: 解决: 在D:\code\shmanage\nginx\nginx文件夹下新建一个temp文件夹,再次运行即可 阅读全文
posted @ 2024-04-22 23:22 小那 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 在项目中用到过的稍有改动的WxValidate.js文件 /** * 表单验证 * * @param {Object} rules 验证字段的规则 * @param {Object} messages 验证字段的提示信息 * */ class WxValidate { constructor(rul 阅读全文
posted @ 2024-04-22 10:54 小那 阅读(4) 评论(0) 推荐(0) 编辑
摘要: win10以管理员身份删除文件或文件夹步骤如下: win+R 打开命令提示符 cd进入到需要删除的文件夹内 执行如下命令:rmdir /s/q 文件夹名 eg: 删除完成! 阅读全文
posted @ 2024-04-16 15:48 小那 阅读(8) 评论(0) 推荐(0) 编辑
摘要: // 参数归一化 // /* 日期时间格式化 date:日期时间 isFillZero:是否需要0补位 */ function formate(date,formater,isFillZero = false){ formater = _formatNormalize(formater) funct 阅读全文
posted @ 2024-04-16 14:06 小那 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 问题: 1.nginx启动失败 2.在logs/error.log文件下,出现报错信息:bind() to 0.0.0.0:80 failed (10013: An attempt was made to access a socket in a way forbidden by its acces 阅读全文
posted @ 2024-04-15 14:25 小那 阅读(17) 评论(0) 推荐(0) 编辑
摘要: MySQL数据库下载及安装教程(最最新版) 一、下载mysql数据库 二、安装Mysql 三、验证是否安装成功 (一)、命令提示符cmd窗口验证 (二)、MySQL控制台验证 一、下载mysql数据库 进入MySQL官方网站(https://www.mysql.com/downloads/),按下图 阅读全文
posted @ 2024-04-12 14:39 小那 阅读(81) 评论(0) 推荐(0) 编辑