在做把数据库的value更新到redis时,更新成功,调用刷新当前页的方法,会跳转到首页,底部分页栏停留在更新之前的页码,这个原因是因为,currentPage刷新后没有被记录下来

在你的前端刷新当前页面方法里面加入如下两行代码,然后调用,就能解决

pagechangeByData:function(currentPage){
this.loading=true;
this.currentPage=currentPage;
}
        this.loading = true;
        this.currentPage = currentPage;

完美解决问题

Logo

前往低代码交流专区

更多推荐