码迷,mamicode.com
首页 > 其他好文 > 详细

VUE通过id从新闻列表跳转到相对的新闻详情

时间:2017-11-20 17:43:00      阅读:630      评论:0      收藏:0      [点我收藏+]

标签:query   span   stat   out   on()   a标签   this   ror   cti   

新闻列表页面:

  在这里我用a标签进行跳转,在vue里面可以这样写<router-link></router-link>

  <router-link :to="{path:‘/news‘,query:{ id:item.NewsID }}" class="around"></router-link>

新闻详情页:

  1)首先要获取id

  var newsID=this.$route.query.id;

  2)拼接到url上面

  this.$http.get(this.$store.state.index.ip + ‘/api/News/‘+newsID)

  

created: function() {
    var newsID=this.$route.query.id;
    this.$http.get(this.$store.state.index.ip + ‘/api/News/‘+newsID).then((response) => {
        console.log(response);
    }).catch(function(error) {
        console.log(error);
    });
}

  这样就可以把id传过去啦

 

VUE通过id从新闻列表跳转到相对的新闻详情

标签:query   span   stat   out   on()   a标签   this   ror   cti   

原文地址:http://www.cnblogs.com/eyed/p/7866951.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!