上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 1.查看是不是没安装xftp,xshell上的那个按钮只是启动按钮 2.还是不行的话,试试在linux上安装这个: yum install lrzsz 阅读全文
posted @ 2022-01-14 09:41 闪光123 阅读(411) 评论(0) 推荐(0) 编辑
摘要: 1.跟目录下新建vue.config.js文件,添加内容: module.exports = { assetsDir: 'static', parallel: false, publicPath: './',//history模式注释掉此行,hash模式需要 productionSourceMap: 阅读全文
posted @ 2022-01-14 09:14 闪光123 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 1、查找以前是否装有mysql 命令:rpm -qa|grep -i mysql 2、停止mysql服务、删除之前安装的mysql 删除命令:rpm -e –nodeps 包名 # rpm -ev MySQL-client-5.5.25a-1.rhel5 # rpm -ev MySQL-server 阅读全文
posted @ 2022-01-13 15:36 闪光123 阅读(3014) 评论(0) 推荐(0) 编辑
摘要: <template> <el-table class="tableList" ref="rw_table" height="700" solt="append" :data="useData" :row-class-name="tableRowClassName" @cell-mouse-enter 阅读全文
posted @ 2022-01-13 15:30 闪光123 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 1.安装依赖: npm i node-schedule --save 2.添加定时任务 const schedule = require('node-schedule'); const scheduleCronstyle = () => { //每天凌晨定时执行一次: schedule.schedu 阅读全文
posted @ 2022-01-12 15:00 闪光123 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 1.express-generator 是 Express 应用程序生成器工具,我们可以使用它来快速创建应用程序框架。 npm install -g express-generatorwindows添加环境变量:E:\node\node_global 2.创建项目express expressFra 阅读全文
posted @ 2022-01-10 13:50 闪光123 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 1.在安装前需要先去官网下载 Yum 资源包,下载地址为:https://dev.mysql.com/downloads/repo/yum/ wget http://repo.mysql.com/mysql80-community-release-el7-4.noarch.rpmrpm -ivh m 阅读全文
posted @ 2021-12-31 17:07 闪光123 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 启用 telnet 客户端组件为 Ping 端口做准备 在程序界面下,选择“打开或关闭Windows功能”,如下图所示: 在打开的对话框中,找到“Telnet客户端”并勾选。最后点击“确定”,等待几分钟,系统将会为你开启Telnet客户端服务,如下图所示: 利用 telnet 命令 Ping 端口的 阅读全文
posted @ 2021-12-31 13:49 闪光123 阅读(1574) 评论(0) 推荐(0) 编辑
摘要: 一、安装数据库 yum install -y mariadb-server [root@base3 ~]# systemctl start mariadb.service[root@base3 ~]# netstat -antlp | grep mysql # 查看端口,可以查看到,说明端口暴露在外 阅读全文
posted @ 2021-12-31 11:42 闪光123 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 一、对非Array对象类型的遍历 1、for in 主要用于遍历对象的可枚举属性,包括自有属性、继承自原型的属性 2、Object.keys 此方法返回一个数组,元素均为对象自有可枚举的属性 3、Object.getOwnProperty 此方法用于返回对象的自有属性,包括可枚举和不可枚举的属性 阅读全文
posted @ 2021-06-01 09:28 闪光123 阅读(180) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页