使用 require("path").join
连接 URL 是否安全,例如:
require("path").join("http://example.com", "ok");
//returns 'http://example.com/ok'
require("path").join("http://example.com/", "ok");
//returns 'http://example.com/ok'
如果没有,您建议用什么方法来做到这一点,而不用编写充满 If 的代码?