文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

VUE怎么实现路由传递参数

2023-07-04 13:06

关注

本篇内容介绍了“VUE怎么实现路由传递参数”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

在路由时传递参数,一般有两种形式,一种是拼接在url地址中,另一种是查询参数。如:http://localhost:8080/router/tang/101?type=spor&num=12。下面根据代码看一下,VUE 和 Spring Boot 中各自是如何处理传递和接受参数的。

Spring Bootpackage com.tang.demo1.controller; import org.springframework.web.bind.annotation.*; @RestController public class RouterController {  @RequestMapping(path = {"/router/{name}/{classid}"}, method = RequestMethod.GET)  public String router(@PathVariable("name") String name  ,@PathVariable("classid") int classid  ,@RequestParam(value = "type", defaultValue = "news") String type  ,@RequestParam(value = "num", required = falsef) int num){  // 访问 http://localhost:8080/router/tang/101?type=spor&num=12  return name + classid + type + num;  } } 在url路径中的,被称为pathVariable,查询参数被称为pequestParm。在controller中接受参数,可以直接在方法里用了。VUEroutes: [  {  path: '/',  name: 'HomePage',  component: HomePage  },  {  path: '/user/:id?/:type?',  name: 'User',  component: User  }  ]

首先在路由中配置url中需要传递的参数,被称为动态路径参数。以“:”开始,末尾的“?”表示为可选的参数。

<template> <div>  <p>user</p>  <router-link :to="'/user/' + item.id + '/' + item.type +'?name=' + item.type" :key="index" v-for="(item, index) in userList">{{item.name}}</router-link>  <div v-if="childName">  <p>-----</p> {{childName}}  </div> </div> </template> <script> var list = [  {'name': 'xiaoming',  'id': 123,  'type': 'vip'},  {'name': 'gangzi',  'id': 456,  'type': 'common'} ] export default {  data(){  return {  userList: list,  childName: null  }  },  watch: {  $route(){  if(this.$route.params.id){ this.childName = this.$route.params.id +'//////' + this.$route.query.name;  }else{  this.childName = null  }  }  },  methods: {  },  created() {  // this.$route.params为动态路径参数  if(this.$route.params.id){ // this.$route.params为查询参数 this.childName = this.$route.params.id +'//////' + this.$route.query.name;  }else{  this.childName = null  }  },  deactivated() {  console.log('deact')  },  computed: {  },  components: {  } }; </script>

vue中接受参数需要从routes实例中获取,动态路径参数在params里,查询参数在query里。

当vue的动态路径组件处在激活状态时,如果改变动态路径参数,那么写在created()的方法将不会再次被调用,因为该组件已经创建好了。此时,可以为$route添加一个watch,当其发生变化时,再获取数据。

在路由时传递参数,一般有两种形式,一种是拼接在url地址中,另一种是查询参数。如:http://localhost:8080/router/tang/101?type=spor&num=12。下面根据代码看一下,VUE 和 Spring Boot 中各自是如何处理传递和接受参数的。

Spring Bootpackage com.tang.demo1.controller; import org.springframework.web.bind.annotation.*; @RestController public class RouterController {  @RequestMapping(path = {"/router/{name}/{classid}"}, method = RequestMethod.GET)  public String router(@PathVariable("name") String name  ,@PathVariable("classid") int classid  ,@RequestParam(value = "type", defaultValue = "news") String type  ,@RequestParam(value = "num", required = falsef) int num){  // 访问 http://localhost:8080/router/tang/101?type=spor&num=12  return name + classid + type + num;  } }

在url路径中的,被称为pathVariable,查询参数被称为pequestParm。在controller中接受参数,可以直接在方法里用了。

VUE

routes: [  {  path: '/',  name: 'HomePage',  component: HomePage  },  {  path: '/user/:id?/:type?',  name: 'User',  component: User  }  ]

首先在路由中配置url中需要传递的参数,被称为动态路径参数。以“:”开始,末尾的“?”表示为可选的参数。

<template> <div>  <p>user</p>  <router-link :to="'/user/' + item.id + '/' + item.type +'?name=' + item.type" :key="index" v-for="(item, index) in userList">{{item.name}}</router-link>   <div v-if="childName">  <p>-----</p> {{childName}}  </div> </div> </template> <script> var list = [  {'name': 'xiaoming',  'id': 123,  'type': 'vip'},  {'name': 'gangzi',  'id': 456,  'type': 'common'} ] export default {  data(){  return {  userList: list,  childName: null  }  },  watch: {  $route(){  if(this.$route.params.id){ this.childName = this.$route.params.id +'//////' + this.$route.query.name;  }else{  this.childName = null  }  }  },  methods: {   },  created() {  // this.$route.params为动态路径参数  if(this.$route.params.id){ // this.$route.params为查询参数 this.childName = this.$route.params.id +'//////' + this.$route.query.name;  }else{  this.childName = null  }   },  deactivated() {  console.log('deact')  },  computed: {   },  components: {  } }; </script>

vue中接受参数需要从routes实例中获取,动态路径参数在params里,查询参数在query里。

当vue的动态路径组件处在激活状态时,如果改变动态路径参数,那么写在created()的方法将不会再次被调用,因为该组件已经创建好了。此时,可以为$route添加一个watch,当其发生变化时,再获取数据。

在路由时传递参数,一般有两种形式,一种是拼接在url地址中,另一种是查询参数。如:http://localhost:8080/router/tang/101?type=spor&num=12。下面根据代码看一下,VUE 和 Spring Boot 中各自是如何处理传递和接受参数的。

Spring Bootpackage com.tang.demo1.controller; import org.springframework.web.bind.annotation.*; @RestController public class RouterController {  @RequestMapping(path = {"/router/{name}/{classid}"}, method = RequestMethod.GET)  public String router(@PathVariable("name") String name  ,@PathVariable("classid") int classid  ,@RequestParam(value = "type", defaultValue = "news") String type  ,@RequestParam(value = "num", required = falsef) int num){  // 访问 http://localhost:8080/router/tang/101?type=spor&num=12  return name + classid + type + num;  } }

在url路径中的,被称为pathVariable,查询参数被称为pequestParm。在controller中接受参数,可以直接在方法里用了。

VUE

routes: [  {  path: '/',  name: 'HomePage',  component: HomePage  },  {  path: '/user/:id?/:type?',  name: 'User',  component: User  }  ]

首先在路由中配置url中需要传递的参数,被称为动态路径参数。以“:”开始,末尾的“?”表示为可选的参数。

<template> <div> <p>user</p>  <router-link :to="'/user/' + item.id + '/' + item.type +'?name=' + item.type" :key="index" v-for="(item, index) in userList">{{item.name}}</router-link>  <div v-if="childName">  <p>-----</p> {{childName}}  </div> </div> </template> <script> var list = [  {'name': 'xiaoming',  'id': 123,  'type': 'vip'},  {'name': 'gangzi',  'id': 456,  'type': 'common'} ] export default {  data(){  return {  userList: list,  childName: null  }  },  watch: {  $route(){  if(this.$route.params.id){ this.childName = this.$route.params.id +'//////' + this.$route.query.name;  }else{  this.childName = null  }  }  },  methods: {  },  created() {  // this.$route.params为动态路径参数  if(this.$route.params.id){ // this.$route.params为查询参数 this.childName = this.$route.params.id +'//////' + this.$route.query.name;  }else{  this.childName = null  }  },  deactivated() {  console.log('deact')  },  computed: {  },  components: {  } }; </script>

vue中接受参数需要从routes实例中获取,动态路径参数在params里,查询参数在query里。

当vue的动态路径组件处在激活状态时,如果改变动态路径参数,那么写在created()的方法将不会再次被调用,因为该组件已经创建好了。此时,可以为$route添加一个watch,当其发生变化时,再获取数据。

Vue的优点

Vue具体轻量级框架、简单易学、双向数据绑定、组件化、数据和结构的分离、虚拟DOM、运行速度快等优势,Vue中页面使用的是局部刷新,不用每次跳转页面都要请求所有数据和dom,可以大大提升访问速度和用户体验。

“VUE怎么实现路由传递参数”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯