1、Express 框架简介及初体验 1.1、Express 框架是什么 Express 是一个属于 Node 平台的 Web 应用开发框架,它提供了一系列的强大特性,帮助你创建各种 Web 应用。 我们可以使用 npm install express 命令进行下载安装。 1.2、Express 框 ...
分类:
其他好文 时间:
2021-01-16 11:49:57
阅读次数:
0
package mainimport ( "github.com/gin-gonic/gin")func main() { router := gin.Default() v1RouterGroup := router.Group("/v1") { v1RouterGroup.GET("/users ...
分类:
其他好文 时间:
2021-01-15 11:47:09
阅读次数:
0
1、对于一层跳转,例如 A(列表页面) ->进入 B(详情页面) ->再到 A(列表页面),建议用一下方式: <keep-alive> <router-view :key="this.$route.path" v-if="$route.meta.keepAlive"></router-view> < ...
分类:
其他好文 时间:
2021-01-14 10:37:47
阅读次数:
0
在vue中默认router-link进入页面组件都是不缓存的。对于数据不会更新的页面。可以使用keep-alive来缓存以提高性能。 在项目src/router/index.js中。对于需要缓存的路由加meta中加上keepAlive: true 1 export default new Route ...
分类:
其他好文 时间:
2021-01-14 10:31:16
阅读次数:
0
会员管理页面接口调通 现在来开发我们的会员管理页面,我们获取会员数据的接口格式如下 { "code": "2001", "success": true, "msg": "", "total": 78, "data": [ { "id": 30, "update_time": "2020-06-11 ...
分类:
Web程序 时间:
2021-01-13 11:14:25
阅读次数:
0
<el-menu :default-active="element.active" :router="element.router" > <el-menu-item style="margin-left: 150px;" index="/index">首页</el-menu-item> <el-me ...
分类:
其他好文 时间:
2021-01-13 10:42:09
阅读次数:
0
1.先安装一个插件: npm install vue-wechat-title 2.在mian.js 中引入以下代码: import vueWechatTitle from "vue-wechat-title"; Vue.use(vueWechatTitle); 3.在App.vue中的<route ...
分类:
其他好文 时间:
2021-01-12 10:49:42
阅读次数:
0
写博客方便自己回顾,最近在跟一个人事项目,前端是基于VUE+AXIOS 在做登陆跳转的时候 遇到问题 this.$router.push 跳转到指定url路径,并想history栈中添加一个记录,点击后退会返回到上一个页面 this.$router.replace 跳转到指定url路径,但是hist ...
分类:
其他好文 时间:
2021-01-12 10:45:06
阅读次数:
0
网址:https://router.vuejs.org/zh/ Vue Router 是 Vue.js 官方的路由管理器。它和 Vue.js 的核心深度集成,让构建单页面应用变得易如反掌。包含的功能有: 嵌套的路由/视图表 模块化的、基于组件的路由配置 路由参数、查询、通配符 基于 Vue.js 过 ...
分类:
其他好文 时间:
2021-01-11 10:31:47
阅读次数:
0
修改golang包路径的时候一直报红字,因为go.mod里面也要一起修改。否则一直报错。 go.mod包名 module proxy-mgr mian.go里面的包名路径 import ( _ "proxy-mgr/boot" _ "proxy-mgr/router" ) ...
分类:
其他好文 时间:
2021-01-08 10:52:41
阅读次数:
0