"如何获取 url 的 get 请求参数?this.$router.app._route.query"
如何获取 url 的 get 请求参数?this.$router.app._route.query
this.$router.app._route.query
比如取 get 请求的 x 参数值,就调this.$router.query.x
this.$router.query.x
如何获取http://localhost:8080/#/user?id=1中 id 的值?
http://localhost:8080/#/user?id=1
在字符串模板中可使用$route.query.id来获取。
$route.query.id
在script中可通过this.$route.query.id 来获取。
script
this.$route.query.id
比如取 get 请求的 x 参数值,就调
this.$router.query.x
如何获取
http://localhost:8080/#/user?id=1
中 id 的值?在字符串模板中可使用
$route.query.id
来获取。在
script
中可通过this.$route.query.id
来获取。