VUE通过id从新闻列表跳转到相对的新闻详情
Posted 额爷
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VUE通过id从新闻列表跳转到相对的新闻详情相关的知识,希望对你有一定的参考价值。
新闻列表页面:
在这里我用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从新闻列表跳转到相对的新闻详情的主要内容,如果未能解决你的问题,请参考以下文章