次のようなURLを提供する関数があります。
./some.css
./extra/some.css
../../lib/slider/slider.css
常に相対パスです。
http://site.com/stats/2012/
のようなページの現在のパスを知っているとしましょう。これらの相対パスを実際のパスにどのように変換すればよいのかわかりませんか?
次のようなものを取得する必要があります。
./some.css => http://site.com/stats/2012/some.css
./extra/some.css => http://site.com/stats/2012/extra/some.css
../../lib/slider/slider.css => http://site.com/lib/slider/slider.css
JQueryなし、Vanilla javascriptのみ。
これはそれを行う必要があります:
function absolute(base, relative) {
var stack = base.split("/"),
parts = relative.split("/");
stack.pop(); // remove current file name (or empty string)
// (omit if "base" is the current folder without trailing slash)
for (var i=0; i<parts.length; i++) {
if (parts[i] == ".")
continue;
if (parts[i] == "..")
stack.pop();
else
stack.Push(parts[i]);
}
return stack.join("/");
}
[〜#〜] url [〜#〜] apiのみを使用する最も簡単で効率的で正しい方法です。
new URL("http://www.stackoverflow.com?q=hello").href;
//=> http://www.stackoverflow.com/?q=hello"
new URL("mypath","http://www.stackoverflow.com").href;
//=> "http://www.stackoverflow.com/mypath"
new URL("../mypath","http://www.stackoverflow.com/search").href
//=> "http://www.stackoverflow.com/mypath"
new URL("../mypath", window.location.href).href
//=> "https://stackoverflow.com/questions/mypath"
パフォーマンスに関しては、このソリューションは文字列操作の使用と同等であり、a
タグの作成の2倍の速度です。
Javascriptがそれを行います。関数を作成する必要はありません。
var link = document.createElement("a");
link.href = "../../lib/slider/slider.css";
alert(link.protocol+"//"+link.Host+link.pathname+link.search+link.hash);
// Output will be "http://www.yoursite.com/lib/slider/slider.css"
ただし、関数として必要な場合:
var absolutePath = function(href) {
var link = document.createElement("a");
link.href = href;
return (link.protocol+"//"+link.Host+link.pathname+link.search+link.hash);
}
更新:完全な絶対パスが必要な場合はよりシンプルなバージョン:
var absolutePath = function(href) {
var link = document.createElement("a");
link.href = href;
return link.href;
}
[〜#〜] mdn [〜#〜] からこれは壊れません!
/*\
|*|
|*| :: translate relative paths to absolute paths ::
|*|
|*| https://developer.mozilla.org/en-US/docs/Web/API/document.cookie
|*|
|*| The following code is released under the GNU Public License, version 3 or later.
|*| http://www.gnu.org/licenses/gpl-3.0-standalone.html
|*|
\*/
function relPathToAbs (sRelPath) {
var nUpLn, sDir = "", sPath = location.pathname.replace(/[^\/]*$/, sRelPath.replace(/(\/|^)(?:\.?\/+)+/g, "$1"));
for (var nEnd, nStart = 0; nEnd = sPath.indexOf("/../", nStart), nEnd > -1; nStart = nEnd + nUpLn) {
nUpLn = /^\/(?:\.\.\/)*/.exec(sPath.slice(nEnd))[0].length;
sDir = (sDir + sPath.substring(nStart, nEnd)).replace(new RegExp("(?:\\\/+[^\\\/]*){0," + ((nUpLn - 1) / 3) + "}$"), "/");
}
return sDir + sPath.substr(nStart);
}
サンプル使用法:
/* Let us be in /en-US/docs/Web/API/document.cookie */
alert(location.pathname);
// displays: /en-US/docs/Web/API/document.cookie
alert(relPathToAbs("./"));
// displays: /en-US/docs/Web/API/
alert(relPathToAbs("../Guide/API/DOM/Storage"));
// displays: /en-US/docs/Web/Guide/API/DOM/Storage
alert(relPathToAbs("../../Firefox"));
// displays: /en-US/docs/Firefox
alert(relPathToAbs("../Guide/././API/../../../Firefox"));
// displays: /en-US/docs/Firefox
ブラウザのカスタムWebページからのリンクに対して(スクリプトを実行するページではなく)相対から絶対への変換を行う場合、@ Bergiによって提案された機能のより強化されたバージョンを使用できます。
var resolveURL=function resolve(url, base){
if('string'!==typeof url || !url){
return null; // wrong or empty url
}
else if(url.match(/^[a-z]+\:\/\//i)){
return url; // url is absolute already
}
else if(url.match(/^\/\//)){
return 'http:'+url; // url is absolute already
}
else if(url.match(/^[a-z]+\:/i)){
return url; // data URI, mailto:, tel:, etc.
}
else if('string'!==typeof base){
var a=document.createElement('a');
a.href=url; // try to resolve url without base
if(!a.pathname){
return null; // url not valid
}
return 'http://'+url;
}
else{
base=resolve(base); // check base
if(base===null){
return null; // wrong base
}
}
var a=document.createElement('a');
a.href=base;
if(url[0]==='/'){
base=[]; // rooted path
}
else{
base=a.pathname.split('/'); // relative path
base.pop();
}
url=url.split('/');
for(var i=0; i<url.length; ++i){
if(url[i]==='.'){ // current directory
continue;
}
if(url[i]==='..'){ // parent directory
if('undefined'===typeof base.pop() || base.length===0){
return null; // wrong url accessing non-existing parent directories
}
}
else{ // child directory
base.Push(url[i]);
}
}
return a.protocol+'//'+a.hostname+base.join('/');
}
何かが間違っている場合、null
を返します。
使用法:
resolveURL('./some.css', 'http://example.com/stats/2012/');
// returns http://example.com/stats/2012/some.css
resolveURL('extra/some.css', 'http://example.com/stats/2012/');
// returns http://example.com/stats/2012/extra/some.css
resolveURL('../../lib/slider/slider.css', 'http://example.com/stats/2012/');
// returns http://example.com/lib/slider/slider.css
resolveURL('/rootFolder/some.css', 'https://example.com/stats/2012/');
// returns https://example.com/rootFolder/some.css
resolveURL('localhost');
// returns http://localhost
resolveURL('../non_existing_file', 'example.com')
// returns null
function canonicalize(url) {
var div = document.createElement('div');
div.innerHTML = "<a></a>";
div.firstChild.href = url; // Ensures that the href is properly escaped
div.innerHTML = div.innerHTML; // Run the current innerHTML back through the parser
return div.firstChild.href;
}
他のソリューションとは異なり、これはIE6でも機能します( 相対URLから絶対URLを取得する。(IE6の問題) を参照)
Hrefソリューションは、ドキュメントが読み込まれた後にのみ機能します(少なくともIE11では)。これは私のために働いた:
link = link || document.createElement("a");
link.href = window.location.href + "/../" + href;
return link.href;
提案され受け入れられているソリューションは、サーバーの相対URLをサポートせず、絶対URLでは機能しません。私の親relativeが/ sites/folder1の場合、たとえば動作しません。
完全な、サーバーの相対URLまたは相対URLをサポートする別の関数と、1レベル上の../を次に示します。完全ではありませんが、多くのオプションをカバーしています。これは、ベースURLが現在のページURLでない場合に使用します。そうでない場合は、より良い代替手段があります。
function relativeToAbsolute(base, relative) {
//make sure base ends with /
if (base[base.length - 1] != '/')
base += '/';
//base: https://server/relative/subfolder/
//url: https://server
let url = base.substr(0, base.indexOf('/', base.indexOf('//') + 2));
//baseServerRelative: /relative/subfolder/
let baseServerRelative = base.substr(base.indexOf('/', base.indexOf('//') + 2));
if (relative.indexOf('/') === 0)//relative is server relative
url += relative;
else if (relative.indexOf("://") > 0)//relative is a full url, ignore base.
url = relative;
else {
while (relative.indexOf('../') === 0) {
//remove ../ from relative
relative = relative.substring(3);
//remove one part from baseServerRelative. /relative/subfolder/ -> /relative/
if (baseServerRelative !== '/') {
let lastPartIndex = baseServerRelative.lastIndexOf('/', baseServerRelative.length - 2);
baseServerRelative = baseServerRelative.substring(0, lastPartIndex + 1);
}
}
url += baseServerRelative + relative;//relative is a relative to base.
}
return url;
}
お役に立てれば。この基本的なユーティリティをJavaScriptで利用できないのは本当にイライラしていました。
History API (IE 10またはを使用して、IE 10(IEはURL-APIをサポートしません)このソリューションは、文字列操作なしで機能します。
_function resolveUrl(relativePath) {
var originalUrl = document.location.href;
history.replaceState(history.state, '', relativePath);
var resolvedUrl = document.location.href;
history.replaceState(history.state, '', originalUrl);
return resolvedUrl;
}
_
history.replaceState()
はブラウザーのナビゲーションをトリガーしませんが、_document.location
_を変更し、相対パスと絶対パスをサポートします。
このソリューションの1つの欠点は、History-APIを既に使用しており、タイトルでカスタム状態を設定している場合、現在の状態のタイトルが失われることです。
これは動作します。ただし、ファイル名でページを開いた場合のみです。このstackoverflow.com/page
のようなリンクを開くとうまく機能しません。 stackoverflow.com/page/index.php
で動作します
function reltoabs(link){
let absLink = location.href.split("/");
let relLink = link;
let slashesNum = link.match(/[.]{2}\//g) ? link.match(/[.]{2}\//g).length : 0;
for(let i = 0; i < slashesNum + 1; i++){
relLink = relLink.replace("../", "");
absLink.pop();
}
absLink = absLink.join("/");
absLink += "/" + relLink;
return absLink;
}
Anglejsナビゲーションで#の後にスラッシュを付けることができるため、受け入れられたソリューションに修正を追加する必要がありました。
function getAbsoluteUrl(base, relative) {
// remove everything after #
var hashPosition = base.indexOf('#');
if (hashPosition > 0){
base = base.slice(0, hashPosition);
}
// the rest of the function is taken from http://stackoverflow.com/a/14780463
// http://stackoverflow.com/a/25833886 - this doesn't work in cordova
// http://stackoverflow.com/a/14781678 - this doesn't work in cordova
var stack = base.split("/"),
parts = relative.split("/");
stack.pop(); // remove current file name (or empty string)
// (omit if "base" is the current folder without trailing slash)
for (var i=0; i<parts.length; i++) {
if (parts[i] == ".")
continue;
if (parts[i] == "..")
stack.pop();
else
stack.Push(parts[i]);
}
return stack.join("/");
}