码迷,mamicode.com
首页 >  
搜索关键字:express router    ( 7718个结果
k8s的容器的webssh实现
Vite2.x + Vue3.x + Xtermjs4 相关信息 编程语言:TypeScript 4.x + JavaScript 构建工具:Vite 2.x 前端框架:Vue 3.x 路由工具:Vue Router 4.x 状态管理:Vuex 4.x UI 框架:Element Plus CSS ...
分类:Web程序   时间:2021-06-09 10:33:40    阅读次数:0
一.node.js中基本的响应信息
const express = require("express"); //创建服务器 var app = express(); //配置服务器的端口 app.listen(8080); app.get("/login",(req,res)=>{ //普通响应 // res.end("今天天气好晴朗 ...
分类:Web程序   时间:2021-06-08 23:39:34    阅读次数:0
二.node.js中的get请求中常用的两种方式
const express = require("express"); const app = express(); app.listen(8080); /** * 请求方式一 * http://localhost:8080/reg?username=zhangsan&password=123456 ...
分类:Web程序   时间:2021-06-08 23:36:42    阅读次数:0
vue使用this.$router跳转路由与传值取值
本窗口打开: 传参: this.$router.push({ name: 'info-detail', params: {id: id}}) 取参: this.$route.params.id 新窗口打开 传参: window.open(this.$router.resolve({ path: 'i ...
分类:其他好文   时间:2021-06-08 23:19:17    阅读次数:0
vue中利用provide和inject实现页面刷新(无白屏)重载组件
1.场景在处理列表时,常常有删除一条数据或者新增数据之后需要重新刷新当前页面的需求。 2.遇到的问题1. 用vue-router重新路由到当前页面,页面是不进行刷新的 2.采用window.reload(),或者router.go(0)刷新时,整个浏览器进行了重新加载,闪烁,体验不好 3.解决方法p ...
分类:其他好文   时间:2021-06-08 22:38:07    阅读次数:0
关于vue-router Cannot read property 'matched' of undefined的问题
按照官方设置写的路由,卡在了Cannot read property 'matched' of undefined这个错误问题,查了很多资料才知道,有两上命名是不能改动的,route与router; 在目录新建了文件router.js import Vue from 'vue' import vue ...
分类:其他好文   时间:2021-06-07 20:35:33    阅读次数:0
vue验证登录(Detected an infinite redirection in a navigation guard when going from "/" to "/login". Aborting to avoid a Stack Overflow. This will break in production if not fixed.)
####出现错误 提示信息: router.beforeEach((to, from, next) => { if (!storage.getItem('userInfo')) { console.log('error') next({ path: '/login' }) } else { cons ...
分类:其他好文   时间:2021-06-06 19:32:40    阅读次数:0
vue取值及方法的操作
1.路由传值: 传值:this.$router.push({ path: '/a', query: { id:1, age:18 } }) //如点击时触发 接收:this.$route.query.id || this.$route.query.age 2.父组件找子组件拿值及其方法: 父: im ...
分类:其他好文   时间:2021-06-04 19:08:41    阅读次数:0
vue的router导航守卫使用
一、什么是导航 导航就是路由正在发生变化 二、导航守卫、路由守卫、路由的钩子函数 路由发生变化时自动触发的一些函数 三、守卫有哪些 全局守卫(通过new Router出来的实例进行使用,在router/index.js中进行使用) 全局前置守卫:beforeEach() beforeEach((to ...
分类:其他好文   时间:2021-06-04 19:03:33    阅读次数:0
返回上一页 vue
1.返回上一页 this.$router.go(-1) 2.返回上一页的指定页面 this.$router.push({ path: '/dashboard' }) ...
分类:其他好文   时间:2021-06-04 18:46:52    阅读次数:0
7718条   上一页 1 2 3 4 5 6 ... 772 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!