日韩精品欧美激情国产一区_中文无码精品一区二区三区在线_岛国毛片AV在线无码不卡_亞洲歐美日韓精品在線_使劲操好爽好粗视频在线播放_日韩一区欧美二区_八戒八戒网影院在线观看神马_亚洲怡红院在线色网_av无码不卡亚洲电影_国产麻豆媒体MDX

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

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

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

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;
		    //請求接口數(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;
			    })
			//請求接品數(shù)據(jù)結束
		  }
		}