url-toolkit:根据基本URL和相对URL构建绝对URL(RFC 1808)
网址工具包轻量级库,用于编写的基本URL和相对URL构建绝对URL。最初是一部分。方法buildAbsoluteURL(baseURL, relativeURL, opts={})从相对的和基本的URL构建绝对URL。 URLToolkit . buildAbsoluteURL ( 'http://a.com/b/cd' , 'e/f/../g' ) ; // => http://a.com/b/e/g如果要确保将该URL视为相对URL,则应在其前面加上./ 。 URLToolkit . buildAbsoluteURL ( 'http://a.com/b/cd' , 'a:b' ) ; // => a:b URLToolkit . buildAbsoluteURL ( 'http://a.com/b/cd' , './a:b' ) ; // => http://a.c
113.63KB
文件大小:
评论区