Ist dies sicher zum require("path").join
Verketten von URLs, zum Beispiel:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
Wenn nicht, wie würden Sie dies vorschlagen, ohne Code voller Wenns zu schreiben?
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')
, der Join einen der doppelten Schrägstriche inhttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
und können dies tun, String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
wenn Sie den regulären Ausdruck nicht immer wieder eingeben möchten . stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')