搜索

首页  >  问答  >  正文

javascript - vue有什么好的办法返回上一个路由保持位置不变。

上拉刷新来实现分页,当有很多页的话,点击列表某一页去详细,然后从详情返回上一页,位置不能变,而且代码不会刷新,使用scrollBehavior还是算了,我用的是hash模式,有做过类似,希望能给点意见。

滿天的星座滿天的星座2755 天前567

全部回复(1)我来回复

  • 習慣沉默

    習慣沉默2017-05-16 13:45:04

    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)
      }) 
    }

    回复
    0
  • 取消回复