中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot/VUE中如何實現路由傳遞參數

發布時間:2021-07-06 10:44:35 來源:億速云 閱讀:442 作者:小新 欄目:web開發

這篇文章將為大家詳細講解有關Spring Boot/VUE中如何實現路由傳遞參數,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

在路由時傳遞參數,一般有兩種形式,一種是拼接在url地址中,另一種是查詢參數。如:http://localhost:8080/router/tang/101?type=spor&num=12。下面根據代碼看一下,VUE 和 Spring Boot 中各自是如何處理傳遞和接受參數的。

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?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 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?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 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?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,當其發生變化時,再獲取數據。

關于“Spring Boot/VUE中如何實現路由傳遞參數”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

琼中| 舒城县| 岳阳县| 湖北省| 永福县| 石棉县| 紫金县| 靖安县| 鄱阳县| 大同市| 年辖:市辖区| 寻甸| 万年县| 富平县| 北安市| 砚山县| 隆尧县| 长丰县| 布拖县| 石嘴山市| 闽侯县| 武宁县| 陇川县| 客服| 万全县| 长子县| 宁城县| 绥江县| 墨脱县| 九江县| 乌拉特后旗| 梧州市| 神池县| 和平县| 房山区| 德州市| 新乐市| 重庆市| 巴彦淖尔市| 花莲市| 庄河市|