Vue如何获取url路由地址和参数简单示例
作者:清风细雨_林木木 时间:2024-05-09 09:53:08
1.window.location
实例:http://www.myurl.com:8866/test?id=123&username=xxx
当前URL
window.location.href
结果:http://www.myurl.com:8866/test?id=123&username=xxx
协议
window.location.protocol
结果:http
域名 + 端口
window.location.host
结果:www.myurl.com:8866
域名
window.location.hostname()
结果:www.myurl.com
端口
window.location.port()
结果:8866
路径部分
window.location.pathname()
结果:/test
请求的参数
window.location.search
结果:?id=123&username=xxx
备注:获取参数
// var url="www.baidu.com?a=1&b=2&C=3";//测试地址
/*
* 分析:最前面是?或&,紧跟着除 ?&#以外的字符若干
* 然后再等号,最后再跟着除 ?&#以外的字符
* 并且要分组捕获到【除?&#以外的字符】
*/
var reg=/[?&]([^?&#]+)=([^?&#]+)/g;
var param={};
var ret = reg.exec(url);
while(ret){ // 当ret为null时表示已经匹配到最后了,直接跳出
param[ret[1]]=ret[2];
ret = reg.exec(url);
}
console.log(param)
获取’?'前边的URL
window.location.origin()
结果:http://www.myurl.com:8866
获取#之后的内容
window.location.hash
结果:null
2.vue-router 获取参数
this.$route
this.$route.fullPath
this.$route.hash
this.$route.matched
this.$route.meta
this.$route.params
this.$route.query
补充:vue获取地址栏地址url截取参数
vue获取地址栏地址url截取参数 方法 (新建js文件)
export function UrlSearch(){<!--{cke_protected}{C}%3C!%2D%2D%20%2D%2D%3E-->
let name,value,str=location.href,num=str.indexOf("?"); //取得整个地址栏
str=str.substr(num+1); //取得所有参数 stringvar.substr(start [, length ]
let arr=str.split("&"); //各个参数放到数组里
console.log(arr)
for(let i=0;i < arr.length;i++){<!--{cke_protected}{C}%3C!%2D%2D%20%2D%2D%3E-->
num=arr[i].indexOf("=");
if(num>0){<!--{cke_protected}{C}%3C!%2D%2D%20%2D%2D%3E-->
name=arr[i].substring(0,num);
value=arr[i].substr(num+1);
this[name]=value;
}
}
}
在main.js引入
挂载到全局
使用
总结
来源:https://blog.csdn.net/weixin_35773751/article/details/127858668
标签:url,路由,地址
0
投稿
猜你喜欢
Python FTP文件定时自动下载实现过程解析
2023-04-30 19:08:51
vue如何通过params和query传值(刷新不丢失)
2024-05-09 15:17:23
Python中的__SLOTS__属性使用示例
2022-04-30 12:19:56
Asp DatePart 函数的语法详解(用于计算日期并返回指定的时间间隔)
2012-12-04 20:04:29
MYSQL数据库教程:唯一编号
2009-02-27 15:27:00
Laravel5中实现模糊匹配加多条件查询功能的方法
2024-05-03 15:28:35
oracle 优化的一点体会
2009-10-02 17:59:00
Go语言Grpc Stream的实现
2023-08-07 06:19:23
SQL Join的一些总结(实例)
2024-01-14 04:28:16
通过Python pyecharts输出保存图片代码实例
2021-09-14 22:26:11
人性化网页设计技巧
2007-10-15 13:02:00
数据清洗之如何用一行Python代码去掉文本中的各种符号
2023-10-04 12:39:25
python中扫描条形码和二维码的实现代码
2023-02-15 23:00:12
Python进程,多进程,获取进程id,给子进程传递参数操作示例
2021-01-13 09:39:47
SQL Server 2005的cmd_shell组件的开启方法
2024-01-19 15:18:06
python利用多种方式来统计词频(单词个数)
2021-12-23 14:52:32
Vue路由应用详细讲解
2024-05-05 09:24:03
新手该如何学python怎么学好python?
2022-06-20 07:33:27
解决Laravel使用验证时跳转到首页的问题
2023-07-12 09:02:13
python字符串查找函数的用法详解
2022-12-09 11:32:47