84669 人學習
152542 人學習
20005 人學習
5487 人學習
7821 人學習
359900 人學習
3350 人學習
180660 人學習
48569 人學習
18603 人學習
40936 人學習
1549 人學習
1183 人學習
32909 人學習
上拉刷新來實現分頁,當有很多頁的話,點擊列表某一頁去詳細,然後從詳情返回上一頁,位置不能變,而且代碼不會刷新,使用scrollBehavior還是算了,我用的是hash模式,有做過類似,希望能給點意見。
beforeRouteLeave(to, from, next){ let position = window.scrollY() this.$store.commit('SAVE_POSITION', position) //离开路由时把位置存起来 }
在頁中取值
mounted () { this.$nextTick(function(){ let position = this.$store.state.position //返回页面取出来 window.scroll(0, position) }) }
在頁中取值