vue.js路由this.route.push跳轉頁面不刷新的解決方法:使用【activated:{}】週期函數取代【mounted:{}】函數,程式碼為【this.$router. go(0);】。
【相關文章推薦:vue.js】
vue.js路由this .route.push跳轉頁面不刷新的解決方法:
1、使用activated:{}
週期函數代替mounted:{}
函數即可。
2、監聽路由
// 不推荐、用户体验不好 watch: { '$route' (to, from) { // 路由发生变化页面刷新 this.$router.go(0); } }, // 该方法会多一次请求 watch: { '$route' (to, from) { // 在mounted函数执行的方法,放到该处 this.qBankId = globalVariable.questionBankId; this.qBankName = globalVariable.questionBankTitle; this.searchCharpter(); } },
相關免費學習推薦:JavaScript(影片)
以上是vue.js路由this.route.push跳轉頁面不刷新怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!