摘要:
进入项目根目录: 1. git init 2. git add . 3. git commit -m 'first commit' 4. 在github上面创建一个仓库,创建成功之后,就会生成该仓库的地址 git remote add origin https://github.com/221288 阅读全文
摘要:
参考: https://start.spring.io/actuator/info 在线分析工具: https://tool.lu/ 阅读全文
摘要:
比如根据路由绑定样式 <a href="javascript:;" class="guide_item" :class="{on:'/search' $route.path}"> <span class="item_icon"><i class="iconfont icon-search"></i> 阅读全文
摘要:
knife4j官网: https://doc.xiaominfo.com/guide/useful.html#java%E5%BC%80%E5%8F%91 这玩艺就swagger的升级版,但是用起来比swagger方便多了,至少不会出现莫名的版本兼容问题 下面记录一个配置示例 1. 代码结构 2.p 阅读全文
摘要:
1. 首先安装nginx服务器,见nginx安装 2. 安装一个vsftp文件服务器, 具体如何搞,我也不明白,网上搞了一篇教程,照着弄就是,特意记录一下 第一步: yum安装vsftpd组 yum -y install vsftpd 安装好了之后,它会有个配置文件,/etc/vsftpd/vsft 阅读全文
摘要:
1. 先安装依赖库 yum install -y gcc-c++ yum install -y pcre pcre-devel yum install -y zlib zlib-devel yum install -y openssl openssl-devel 上面的依赖库项也可以到 https: 阅读全文
摘要:
编写使用路由由以下三步组成 1. 定义路由组件 2.注册路由 3.使用路由 <router-link to='/path'> </router-link> <router-view> </router-view> 1.安装vue-router npm install vue-router --sav 阅读全文
摘要:
1. 绑定监视 2. 事件修饰符 3. 按键修饰符 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--列表过滤与排序--> <div id="d 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--列表过滤与排序--> <div id="demo"> <input type="text" v 阅读全文
摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <div id="demo"> <p>v-for遍历数组</p> <ul> <li v-for="(p 阅读全文