Bu require("path").join
, URL'leri birleştirmek için güvenli midir, örneğin:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
Değilse, ifs kodlarıyla dolu kod yazmadan bunu yapmak için hangi yolu önerirsiniz?
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')
, birleştirme çift eğik çizgilerden birinden kurtulurhttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
ve siz olabilir yapmak String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
size tekrar tekrar normal ifadeyi yazın istemiyorsanız. stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')