前端路由传参,参数乱码不能刷新

1.我们用路由传参事发现url参数部分是加密过的乱码

传:this.$router.push({path:'distributorLogin',query:{distributorPre:1}})
接:this.$route.query.distributorPre

2.解决办法我们将参数深拷贝后传参

传:this.$router.push({
        path :'distributordetail',
        query: {
          di : JSON.stringify(row.id)
        }
      });

接:JSON.parse(this.$route.query.di);

在次刷新就可以成功刷新页面了
前端路由传参,参数乱码不能刷新

上一篇:无线动态化解决方案总结:从WeApp到Weex


下一篇:IOC和DI的联系