代码拉取完成,页面将自动刷新
const url = require('url');
let obj = {
protocol: 'https:',
slashes: true,
auth: 'user:pass',
host: 'sub.host.com:8080',
port: '8080',
hostname: 'sub.host.com',
hash: '#aa',
search: '?query=string',
query: 'query=string',
pathname: '/p/a/t/h',
path: '/p/a/t/h?query=string',
// href: 'https://user:pass@sub.host.com:8080/p/a/t/h?query=string#hash'
}
// 将对象转化成url
const myURL1 = url.format(obj)
console.log(myURL1)
// 还可以字符串直接是url
const myURL = new URL('https://example.org:8080/uer?abc=123#hash');
// const myURL = new URL('/aa','https://example.org:8080/uer?abc=123');
myURL.host = "www.baidu.com:334"
myURL.port = 22
console.log(myURL);
myURL.search = "abc=123&name=aa"
console.log(myURL.search); // ?abc=123&name=aa
console.log(myURL.href);
// 将对象转化成字符串
// '/one/two/four' 只能是一个参数
console.log(url.resolve('/one/two/three', 'four'));
// 'http://example.com/one'
console.log(url.resolve('http://example.com/', '/one'));
// 'http://example.com/two'
console.log(url.resolve('http://example.com/one/thress', '/two'));
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。