在路由时传递参数,一般有两种形式,一种是拼接在url地址中,另一种是查询参数。如:http://localhost:8080/router/tang/101"htmlcode">
Spring Boot package 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"htmlcode"><template> <div> <p>user</p> <router-link :to="'/user/' + item.id + '/' + 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"htmlcode">
Spring Boot package 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"htmlcode">routes: [ { path: '/', name: 'HomePage', component: HomePage }, { path: '/user/:id"htmlcode"><template> <div> <p>user</p> <router-link :to="'/user/' + item.id + '/' + 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"htmlcode">
Spring Boot package 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"htmlcode">routes: [ { path: '/', name: 'HomePage', component: HomePage }, { path: '/user/:id"htmlcode"><template> <div> <p>user</p> <router-link :to="'/user/' + item.id + '/' + 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,当其发生变化时,再获取数据。
总结
以上所述是小编给大家介绍的Spring Boot/VUE中路由传递参数的实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件! 如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com暂无“Spring Boot/VUE中路由传递参数的实现代码”评论...
更新动态
- 群星《唱给女人的歌》24K德国HD金碟[WAV+CUE]
- 孙燕姿.2011-是时候【美妙音乐】【WAV+CUE】
- 苏芮.2003-回首·时代全经典2CD【华纳】【WAV+CUE】
- 梁咏琪.1996-爱自己【EEI】【WAV+CUE】
- IGN经典逆天骚操作名著——《墙头草修炼手册》
- 突然爆火的“网红游戏”,真的有那么多人玩吗?
- 何老师客串《浪人崛起》了?盘点与明星撞脸的角色!
- 【原神】关于星鹫赤羽对珐芙琴班配队下珐露珊主C的适配度分析
- 【原神】V5.1攻略 | 迪西雅角色简评
- 【原神】大日御舆顶端怎么上去
- 胥拉齐《感谢有你》DTS-WAV
- 罗海英《金牌歌后》【WAV+CUE】
- 林叶《林叶·夜》【WAV/分轨】
- 群星《国语经典名曲01》音乐磁场系列[WAV+CUE][1G]
- 齐豫《滚石24K》24K金碟珍藏版系列[低速原抓WAV+分轨][1G]