会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
8
···
23
下一页
2020年3月14日
使用git命令将本地项目提交到github
摘要: 进入项目根目录: 1. git init 2. git add . 3. git commit -m 'first commit' 4. 在github上面创建一个仓库,创建成功之后,就会生成该仓库的地址 git remote add origin https://github.com/221288
阅读全文
posted @ 2020-03-14 16:56 显示账号
阅读(253)
评论(0)
推荐(0)
2020年3月11日
springboot与cloud版本兼容
摘要: 参考: https://start.spring.io/actuator/info 在线分析工具: https://tool.lu/
阅读全文
posted @ 2020-03-11 23:57 显示账号
阅读(258)
评论(0)
推荐(0)
vue使用对象语法强制绑定样式
摘要: 比如根据路由绑定样式 <a href="javascript:;" class="guide_item" :class="{on:'/search' $route.path}"> <span class="item_icon"><i class="iconfont icon-search"></i>
阅读全文
posted @ 2020-03-11 23:22 显示账号
阅读(504)
评论(0)
推荐(0)
2020年3月10日
springboot2整合knife4j
摘要: knife4j官网: https://doc.xiaominfo.com/guide/useful.html#java%E5%BC%80%E5%8F%91 这玩艺就swagger的升级版,但是用起来比swagger方便多了,至少不会出现莫名的版本兼容问题 下面记录一个配置示例 1. 代码结构 2.p
阅读全文
posted @ 2020-03-10 23:37 显示账号
阅读(14795)
评论(0)
推荐(1)
2020年3月5日
搭建nginx图片服务器
摘要: 1. 首先安装nginx服务器,见nginx安装 2. 安装一个vsftp文件服务器, 具体如何搞,我也不明白,网上搞了一篇教程,照着弄就是,特意记录一下 第一步: yum安装vsftpd组 yum -y install vsftpd 安装好了之后,它会有个配置文件,/etc/vsftpd/vsft
阅读全文
posted @ 2020-03-05 23:15 显示账号
阅读(823)
评论(0)
推荐(0)
linux离线安装nginx
摘要: 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:
阅读全文
posted @ 2020-03-05 22:22 显示账号
阅读(18330)
评论(2)
推荐(0)
2020年3月2日
vue路由
摘要: 编写使用路由由以下三步组成 1. 定义路由组件 2.注册路由 3.使用路由 <router-link to='/path'> </router-link> <router-view> </router-view> 1.安装vue-router npm install vue-router --sav
阅读全文
posted @ 2020-03-02 00:44 显示账号
阅读(220)
评论(0)
推荐(0)
2020年3月1日
vue事件处理
摘要: 1. 绑定监视 2. 事件修饰符 3. 按键修饰符 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--列表过滤与排序--> <div id="d
阅读全文
posted @ 2020-03-01 22:06 显示账号
阅读(230)
评论(0)
推荐(0)
vue过滤与排序
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--列表过滤与排序--> <div id="demo"> <input type="text" v
阅读全文
posted @ 2020-03-01 21:34 显示账号
阅读(522)
评论(0)
推荐(0)
vue列表渲染
摘要: <!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
阅读全文
posted @ 2020-03-01 14:42 显示账号
阅读(390)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
8
···
23
下一页
公告