1.如果使用路由跳转到别的界面的话,例如从文章list页面跳转到具体文章查看详情页,查看某一个具体就需要传递那个文章的id去后台查询, this.$router.push的params方法可以实现传递,但是如果在详情页面再一次刷新,你会发现详情页面数据没有了.就需要用query属性把需要的参数传递过去即可解决问题 this.$router.push({ name: 'ArticleDetail', query: { articleId: obj.id, }, path: '/article/de…