Apakah ini aman digunakan require("path").join
untuk menggabungkan URL, misalnya:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
Jika tidak, cara apa yang Anda sarankan untuk melakukan ini tanpa menulis kode penuh jika?
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')
, gabungan menghilangkan salah satu garis miring ganda dihttp://
'http://localhost:9887/one/two/three/'.replace(/^\/+|\/+$/, '') + '/' + '/four'.replace(/^\/+|\/+$/, '')
dan Anda dapat melakukannya String.prototype.trimSlashes = function() { return this.replace(/^\/+|\/+$/, ''); }
jika Anda tidak ingin mengetik ekspresi reguler berulang kali. stackoverflow.com/a/22387870/2537258
['http://localhost:9887/one/two/three/', '/four'].map((part) => part. replace(/^\/+|\/+$/, '')).join('/')