tnblog
首页
视频
资源
登录
什么时候才能领悟,取之越多失之越多
排名
5
文章
229
粉丝
15
评论
7
ICP备案 :渝ICP备18016597号-1
网站信息:2018-2025TNBLOG.NET
技术交流:群号656732739
联系我们:contact@tnblog.net
公网安备:50010702506256
欢迎加群交流技术

elementui 页面跳转

11954人阅读 2022/9/27 21:44 总访问:1167664 评论:0 收藏:1 手机
分类: 前端

很多情况下,我们在执行点击按钮跳转页面之前还会执行一系列方法,这时可以使用 this.$router.push(location) 来修改 url,完成跳转。

push 后面可以是对象,也可以是字符串:

  1. // 字符串
  2. this.$router.push('/home/first')
  3. // 对象
  4. this.$router.push({ path: '/home/first' })
  5. // 命名的路由
  6. this.$router.push({ name: 'home', params: { userId: wise }})

跳转页面并传递参数的方法:

1.Params

由于动态路由也是传递params的,所以在 this.$router.push() 方法中path不能和params一起使用,否则params将无效。需要用name来指定页面。

及通过路由配置的name属性访问

在路由配置文件中定义参数:

  1. /* router.js 文件*/
  2. import Vue from "vue";
  3. import Router from "vue-router";
  4. import MediaSecond from "@/views/EnterprisePage/MediaMatrix/second"; //资讯列表
  5. Vue.use(Router);
  6. export default new Router({
  7. routes: [ /* 进行路由配置 */
  8. {
  9. name: "MediaSecond",
  10. path: "/MediaSecond",
  11. component: MediaSecond
  12. },
  13. ]
  14. })
  15. /* 后面还需要接一空行,否则无法通过 ESlint 语法验证 */

通过name获取页面,传递params:

  1. this.$router.push({ name: 'MediaSecond',params:{artistName:artistName,imgUrl:imgUrl,type:2} })

在目标页面通过this.$route.params获取参数:

  1. if (this.$route.params.type == 2) {
  2. this.type = apis.getAtistDetails;
  3. } else {
  4. this.type = apis.getMessageList;
  5. }

2.Query
页面通过path/name和query传递参数,该实例中row为某行表格数据

  1. this.$router.push({ name: 'DetailManagement', query: { auditID: row.id, type: '2' } });
  2. this.$router.push({ path: '/DetailManagement', query: { auditID: row.id, type: '2' } });

在目标页面通过this.$route.query获取参数:
this.$route.query.type

原文:
https://blog.csdn.net/yang295242361/article/details/104822652


欢迎加群讨论技术,1群:677373950(满了,可以加,但通过不了),2群:656732739。有需要软件开发,或者学习软件技术的朋友可以和我联系~(Q:815170684)

评价