Vue项目获取url中的参数

获取URL中的参数

1 获取?后面的参数

http://192.168.1.105:8080/#/idInput?username=%22%E5%BC%A0%E4%B8%89%22

获取参数方法 let id = this.$route.query.username

2 获取不带?的URL中的参数

http://192.168.1.12:8080/#/home/newsinfo/234

在路由中配置路由

{ path: '/home/newsinfo/:id', component: Newsinfo }

.vue页面设置

获取参数方法 let id = this.$route.params.id

内部页面之间互相传值

这里先讲情况一,因为同一项目内互相传值比较简单,假如要从A页面跳转到B页面,并传值。就要在A页面这么

this.$router.push({name:"B",query:{    Id : this.tId ,    ...}})

 

进入B页面之后,在B页面内这么写

this.Id = this.$route.query.Id;

 

就能将A页面的id传入B页面,进行数据调取。

你可能感兴趣的:(vue.js,javascript,前端)