LoginSignup
5
1

More than 5 years have passed since last update.

JavaScriptで文字列を結合してURLを作成する方法

Posted at

 以下のように書くみたいです。
 30 seconds of codeより引用。

const URLJoin = (...args) =>
  args
    .join('/')
    .replace(/[\/]+/g, '/')
    .replace(/^(.+):\//, '$1://')
    .replace(/^file:/, 'file:/')
    .replace(/\/(\?|&|#[^!])/g, '$1')
    .replace(/\?/g, '&')
    .replace('&', '?');

URLJoin('http://www.google.com', 'a', '/b/cd', '?foo=123', '?bar=foo'); // 'http://www.google.com/a/b/cd?foo=123&bar=foo'

 基本的にはString.joinで結合するだけですが、記号等を置換して不正にならないようにしているようです。最初の記号だけ残すように工夫しているところがハックのポイントなんだと思います。

5
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
1