官方API地址:https://nodejs.org/api/url.html
url.parse():将url字符串转换为url对象
url.format():将url对象格式化为url 字符串
url.resolve():用于解析,接受两个参数,拼接
在node环境下直接输url,如下图
url.parse(‘http://imooc.com/course/list‘)
url.parse(‘http://imooc.com:8080/course/list?from=scott&course=node#floor1‘)
url.format(obj)
url.resolve();
url.parse(‘http://imooc.com:8010/course/list?from=scott&course=node#floor1‘,true):
第二个参数为true, query被转换为了一个对象
url.parse(‘//imooc.com/course/list‘,true,true);第三个参数为true,
第一个参数没有写http,不知道是http还是https协议
时间: 2024-10-09 23:04:44