上拉刷新来实现分页,当有很多页的话,点击列表某一页去详细,然后从详情返回上一页,位置不能变,而且代码不会刷新,使用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) }) }
在页面中取值