使用path.join来拼接网址并不安全,比如:
console.log(
path.join('http://127.0.0.1:9000', '/abcd/efg')
)
输出
http:/127.0.0.1:9000/abcd/efg
可使用URL来拼接
console.log(
new URL('/abcd/efg', 'http://127.0.0.1:9000').href
)
输出
http://127.0.0.1:9000/abcd/efg
回复 (0)
微信扫码 立即评论