国产午夜色司机在线观看,亚洲国产小视频在线观看,国产精品毛片一级久久,欧美高清vivoe,国产指交视频一区之二区,中文字幕在线码一区,18成禁人视频免费网站,影视中文综合国产,在线观看特色大片免费视频,午夜激情成人在线

vue路由只變化參數頁面組件不更新問題

時間:2018-11-16 23:31:26 類型:vue
字號:    

vue路由只變化參數頁面組件不更新問題, 例如:

http://localhost:8080/web.html?classid=36

http://localhost:8080/web.html?classid=37

http://localhost:8080/web.html?classid=38


解決辦法:

使用watch監(jiān)聽路由$route對象屬性的變化

watch: {
		  '$route':function(to, from) {
		  	this.classid = this.$route.query.classid;
		    //請求接口數據開始
	    	this.$http.post("http://ncyateng.cn/api/web",
	    		{classid:this.$route.query.classid},
	    		{emulateJSON:true})
	    	    .then((response)=>{
	    		  console.log(response.data);
			      this.classid = response.data.classid;
			    })
			//請求接品數據結束
		  }
		}