vue-router路由参数刷新消失的问题
vue-router路由参数刷新消失的问题页面使用vue-router在跳转时发的参数有用来给下一个页面请求数据用的。在进入页面后再次刷新,参数就消失了,解决方案如下:1、如果要用 params 传参的话,可能需要在你的路由路径里也加上这个参数,比如你用this.$router.push({name:'articleDetail, params:{articleId: arti...
·
vue-router路由参数刷新消失的问题
页面使用vue-router在跳转时发的参数有用来给下一个页面请求数据用的。在进入页面后再次刷新,参数就消失了,解决方案如下:
1、如果要用 params 传参的话,可能需要在你的路由路径里也加上这个参数,比如你用
this.$router.push({name:'articleDetail, params:{articleId: articleId}});
跳转,那么在路由里就要这样写
routes: [
{
path: '/articleDetail/:articleId',
name: 'articleDetail'
}
]
path: '/articleDetail/:articleId',里的 :articleId 是必须要有的
,具体的可以参考 Vue-router 命名路由
2、你在用 vue-router 跳转的时候可以把参数写进 query 里this.$router.push({name:’articleDetail, query:{articleId: articleId}});
this.$router.push({name: 'addGoodsList', query: {title: '添加商品'}})
这样你的 url 就会像 http://xxx.xxx.xxx/articleDetail?articleId=123,这样无论你怎么刷新 articleId 都不会丢失
然后在你的 init 方法里 可以用 this.articleId = this.$route.query.articleId; 来获取id
this.title2 = this.$route.query.title;
更多推荐
已为社区贡献8条内容
所有评论(0)