项目中需要根据相对路径来透过第三方网络工具(也是自己写的)发起请求. web端一般不会直接给你绝对路径,这时就需要根据前端提供的相对路径生成绝对路径. 相对路径中可能含有./
,../
,第一感觉简单的要死,自己写个解析不就行了.然后.... 还是看别人怎么实现的吧.
第一种方法:(借用浏览器创建a,img,link,script,iframe均可转化为绝对路径)
透过image对象来
function getabsoluteurl(url){var img = new image();img.src = url; // 设置相对路径给image, 此时会发送出请求url = img.src; // 此时相对路径已经变成绝对路径img.src = null; // 取消请求return url;
}
getabsoluteurl(showroom/list);
第二种创建anchor(html的超链接对象)
这种方法不会发出任何请求(请求会在加入dom时产生)
var _relativePath2FullPath = function relativePath2FullPath(url){var a = document.createElement('A');a.href = url;url = a.href;return url;};
第三种方法(没有验证)
function parseURI(url) {var m = String(url).replace(/^\s+|\s+$/g, '').match(/^([^:\/?#]+:)?(\/\/(?:[^:@]*(?::[^:@]*)?@)?(([^:\/?#]*)(?::(\d*))?))?([^?#]*)(\?[^#]*)?(#[\s\S]*)?/);// authority = '//' + user + ':' + pass '@' + hostname + ':' portreturn (m ? {href : m[0] || '',protocol : m[1] || '',authority: m[2] || '',host : m[3] || '',hostname : m[4] || '',port : m[5] || '',pathname : m[6] || '',search : m[7] || '',hash : m[8] || ''} : null);
}function absolutizeURI(base, href) {// RFC 3986function removeDotSegments(input) {var output = [];input.replace(/^(\.\.?(\/|$))+/, '').replace(/\/(\.(\/|$))+/g, '/').replace(/\/\.\.$/, '/../').replace(/\/?[^\/]*/g, function (p) {if (p === '/..') {output.pop();} else {output.push(p);}});return output.join('').replace(/^\//, input.charAt(0) === '/' ? '/' : '');}href = parseURI(href || '');base = parseURI(base || '');return !href || !base ? null : (href.protocol || base.protocol) +(href.protocol || href.authority ? href.authority : base.authority) +removeDotSegments(href.protocol || href.authority || href.pathname.charAt(0) === '/' ? href.pathname : (href.pathname ? ((base.authority && !base.pathname ? '/' : '') + base.pathname.slice(0, base.pathname.lastIndexOf('/') + 1) + href.pathname) : base.pathname)) +(href.protocol || href.authority || href.pathname ? href.search : (href.search || base.search)) +href.hash;
}
原文链接
作者:EnjoyWT
链接:https://www.jianshu.com/p/2813d24d446f
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。