È sicuro da usare require("path").join
per concatenare gli URL, ad esempio:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
In caso contrario, che modo suggeriresti di farlo senza scrivere codice pieno di se?
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')
, il join elimina uno dei doppi tagli inhttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
e si può fare String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
se non si desidera digitare l'espressione regolare più e più volte. stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')