vue2中,如何在router.beforeEach里,等待父页面消息传递
在`router.beforeEach`中,可以使用`next(false)`来阻止路由的切换,从而等待父页面消息传递后再将导航转到目标路由。具体步骤如下:
1. 在`router.beforeEach`中调用 `next(false)` 来暂停路由的切换。
2. 在父页面中传递消息,并在接收到消息时使用`router.push`手动触发路由切换。
示例代码如下:
```javascript
// router.js
import Vue from 'vue'
import Router from 'vue-router'
Vue.use(Router)
const router = new Router({
routes: [
// 路由配置
]
})
router.beforeEach((to, from, next) => {
if (to.meta.needMessage) {
next(false) // 暂停路由切换
} else {
next() // 继续路由切换
}
})
export default router
```
```javascript
// Parent.vue
export default {
methods: {
sendMessage() {
this.$router.push({ name: 'Child', params: { message: 'Hello World' } })
}
}
}
```
```javascript
// Child.vue
export default {
created() {
if (this.$route.params.message) {
// 处理接收到的消息
} else {
// 处理没有接收到消息的情况
}
}
}
```
通过以上方法,可以在`router.beforeEach`中等待父页面传递消息后再进行路由的切换。
转载请注明出处或者链接地址:https://www.qianduange.cn//article/5233.html
相关文章
-
用js生成小米商城
-
网页汇率计算器vue代码
-
vue3绘制内容自动无缝滚动表格
-
npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.
-
vue里使用样式color: var(--Editor-text),已经定义了--Editor-text,但是却显示变量--Editor-text未定义,为啥
-
wangEditor设置初始文字颜色
-
Golang 使用 Gin 框架接收 HTTP Post 请求体中的 JSON 数据
-
Python读写Json文件
-
【头歌】——数据分析与实践-python-网络爬虫-Scrapy爬虫基础-网页数据解析-requests 爬虫-JSON基础
-
ObjectMapper转化对象常用方法(转LIst、Map,以及Type、JavaType、constructType的学习)
发布的文章
用js生成小米商城
2024-04-27 21:04:59
网页汇率计算器vue代码
2024-04-26 13:04:44
vue3绘制内容自动无缝滚动表格
2024-04-25 16:04:07
npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm ERR! request to https://registry.
2024-04-20 17:04:38
vue里使用样式color: var(--Editor-text),已经定义了--Editor-text,但是却显示变量--Editor-text未定义,为啥
2024-04-25 08:04:19
wangEditor设置初始文字颜色
2024-04-23 15:04:38
Golang 使用 Gin 框架接收 HTTP Post 请求体中的 JSON 数据
2024-04-23 22:04:53
Python读写Json文件
2024-04-23 22:04:19
【头歌】——数据分析与实践-python-网络爬虫-Scrapy爬虫基础-网页数据解析-requests 爬虫-JSON基础
2024-04-23 22:04:19
ObjectMapper转化对象常用方法(转LIst、Map,以及Type、JavaType、constructType的学习)
2024-04-23 22:04:02
大家推荐的文章