これは、require("path").join
URLを連結するために使用しても安全ですか?
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
そうでない場合、ifsでいっぱいのコードを記述せずにこれを行うにはどのような方法を提案しますか?
path.posix.join('/one/two/three', 'four') // '/one/two/three/four
、path.posix.join('/one/two/three/', 'four') // '/one/two/three/four
、path.posix.join('/one/two/three/', '/four') // '/one/two/three/four
path.posix.join('http://localhost:9887/one/two/three/', '/four')
と、結合がダブルスラッシュの1つを取り除くことですhttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
ことができますString.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
。stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')