第1引数の末尾に/があるのとないのでは結果が異なる。
URI.join("http://www.hoge.jp/fuga", "hege").to_s
# => "http://www.hoge.jp/hege"
URI.join("http://www.hoge.jp/fuga/", "hege").to_s
# => "http://www.hoge.jp/fuga/hege"
Go to list of users who liked
More than 5 years have passed since last update.
第1引数の末尾に/があるのとないのでは結果が異なる。
URI.join("http://www.hoge.jp/fuga", "hege").to_s
# => "http://www.hoge.jp/hege"
URI.join("http://www.hoge.jp/fuga/", "hege").to_s
# => "http://www.hoge.jp/fuga/hege"
Register as a new user and use Qiita more conveniently
Go to list of users who liked