久久久久久AV无码免费看大片,亚洲一区精品人人爽人人躁,国产成人片无码免费爱线观看,亚洲AV成人无码精品网站,为什么晚上搞的时候要盖被子

vue路由只變化參數(shù)頁(yè)面組件不更新問(wèn)題

時(shí)間:2018-11-16 23:31:26 類型:vue
字號(hào):    

vue路由只變化參數(shù)頁(yè)面組件不更新問(wèn)題, 例如:

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對(duì)象屬性的變化

watch: {
		  '$route':function(to, from) {
		  	this.classid = this.$route.query.classid;
		    //請(qǐng)求接口數(shù)據(jù)開始
	    	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;
			    })
			//請(qǐng)求接品數(shù)據(jù)結(jié)束
		  }
		}