package main import ( "github.com/gin-gonic/gin" "topic.jtthink.com/src" ) func main() { router := gin.Default() v1 := router.Group("/v1/topics") { v1... ...
分类:
其他好文 时间:
2019-12-20 00:56:24
阅读次数:
77
1.默认路由 v3 <IndexRoute> v4 <Route exact> 2.授权路由 import Redirect from 'react-router-dom' < Redirect to="home"> 组件它会始终执行浏览器重定向,当处于中时,只有其他路由不匹配的情况下,才会渲染重定 ...
分类:
其他好文 时间:
2019-12-18 23:33:48
阅读次数:
117
Keepalived简介 Keepalived是Linux下一个轻量级别的高可用解决方案。高可用(High Avalilability,HA),其实两种不同的含义:广义来讲,是指整个系统的高可用行,狭义的来讲就是之主机的冗余和接管, 它与HeartBeat RoseHA 实现相同类似的功能,都可以实 ...
分类:
编程语言 时间:
2019-12-18 12:28:49
阅读次数:
119
1.设置ip sudo ifconfig eth0 192.168.1.121 2.设置网关 sudo route add default gw 192.168.1.1 eth0 3.设置dns sudo -i echo "nameserver 8.8.8.8" > /etc/resolve.con ...
分类:
系统相关 时间:
2019-12-18 00:12:35
阅读次数:
147
3.1正则转换器定义 Class RegexConverter(BaseConverter): regex = "[0-9]{6}" app.url_map.converters["re"] = RegexConverter @app.route("/user/<re:user_id>") def ...
分类:
编程语言 时间:
2019-12-17 09:11:27
阅读次数:
113
页面实时更新的方法: 1.window.onload.reload() 2.this.$route.go(0) 3.推荐使用该方法刷新页面 ① <router-view v-if="isRouterAlive"/> ② APP组件中操作: data 中定义变量 data () { return { ...
分类:
其他好文 时间:
2019-12-16 22:55:01
阅读次数:
1281
router0 Router(config)#int f0/0 Router(config-if)#ip address 10.0.0.1 255.0.0.0 Router(config-if)#no shutdown Router(config-if)#exit Router(config)#in ...
分类:
其他好文 时间:
2019-12-16 18:58:45
阅读次数:
94
在父组件中通过provide来提供变量,然后在子组件中通过inject来注入变量 provide(){ return{ reload:this.reload } }, reload(){ this.isRouterAlive = false; this.$nextTick(function(){ t ...
分类:
其他好文 时间:
2019-12-16 11:29:46
阅读次数:
123
到这里vue的所有平时使用的知识点都写完了 先补充一下vue2.x的安装 2.x是有vue router的,但是vuex和axios自己安装 3.x有vue router和vuex,axios自己安装 vue2.x是没有自定义的==vue.config.js==配置文件的,他的配置文件是==conf ...
分类:
其他好文 时间:
2019-12-15 23:44:43
阅读次数:
154
redirect: '/buyOne' // 重定向 components: { // 复数s , 同时展示不同内容 不同router-view 用name区分 default: BuyOne, bob: Test } path: '/about/:id', // name: 'About', // ...
分类:
其他好文 时间:
2019-12-15 23:40:54
阅读次数:
86