请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

关于路由跳转的问题

问题是这样的.
我的router-link代码

<router-link :to="{path:'/gamedetial/'+ game.id}">
 <img :src="game.img" alt="">
 <div class="game-box clearfix">
   <p class="game-name" :data-game="game.id">
     <span class="game-the-name">{{ game.name }}</span>
     <span v-if="game.ishot == 1" class="is-hot">热门</span>
     <span v-if="game.isnew == 1" class="is-new">最新</span>
     <span v-if="game.gift !== null" class="is-gift">礼包</span>
   </p>
   <p class="game-content">{{ game.content }}</p>
 </div>
</router-link>

我的显示代码

created(){
 this.$http.get('http://h5.wan855.cn/api/h5/game/gameinfo/gid/'+this.$route.params.gid).then(function (res) {
   this.game = res.body
   console.log(this.$route.params.gid)
   console.log(this.game.articletype)
}

老师,现在我惦记 gid=6 的时候跳的路由地址是6,gid=7的时候跳转的gid=7,但是他页面的数据还是6的.有什么办法才能每次跳转路由的时候我都能把我created()中的数据刷新了呢?


正在回答 回答被采纳积分+3

2回答

提问者 wykun 2017-06-23 01:38:32

图片加载失败图片加载失败
这个是在微信客户端上的页面,h5.wan855.cn我想点热门游戏里的游戏图标跳转到游戏详情,但是再点别的游戏它的游戏详情是你第一次点过的游戏详情。。

0 回复 有任何疑惑可以回复我~
  • 路由需要有 router-view 对应组件,路由组件根据不同的参数获取不同的数据渲染即可。
    回复 有任何疑惑可以回复我~ 2017-06-23 01:41:43
ustbhuangyi 2017-06-23 01:34:08

这个似乎不像是课程的代码喔,提供一下可访问的 demo 页面?

0 回复 有任何疑惑可以回复我~
  • 提问者 wykun #1
    图片我写在回答上了.也可以用微信访问h5.wan855.cn
    这个是在微信客户端上的页面,h5.wan855.cn我想点热门游戏里的游戏图标跳转到游戏详情,但是再点别的游戏它的游戏详情是你第一次点过的游戏详情。。
    回复 有任何疑惑可以回复我~ 2017-06-23 01:40:39
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信