uniapp this.$route
时间: 2023-12-03 09:29:45 浏览: 149
uniapp中的一个完全相似Vue-router的路由插件
5星 · 资源好评率100%
在uniapp中,可以使用this.$route来获取当前页面的路由信息。通过this.$route.query可以获取url中参数值。例如,如果你需要获取url中的code参数,可以使用以下代码:
```javascript
const code = this.$route.query.code;
```
这样就可以获取到code参数的值了。需要注意的是,使用this.$route.query来获取参数值,前提是该参数存在于url中。如果参数不存在,返回的值会是undefined。
阅读全文