VUE中获取地址参数

  • Post author:
  • Post category:vue


方式一:this.$route.query.token

此种方式获取到的是解析后的数据,不能用作访问其他地址作为参数使用,可以获取解析参数内容后并使用

方式二:this.$route.fullPath

获取路由地址,手动截取,可用作访问其他地址作为参数使用

let path =  this.$route.fullPath;

this.token =  path.substr(path.indexOf(‘token=’)+6);

方式三:window.location.href



版权声明:本文为qq_42563079原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。