我实际上是在寻找一种良好的路径惯例,并且主要是在元素之间存储/
的位置:
const dir = "example/"
的末尾const file = "/example1.md"
的开头Array.join('/')
)我一直在寻找URL convention来尝试找到一种好的做法,但是它没有讨论这条路。
示例
让我们看一个真实的例子
const base_url = process.env.API_URL // http://localhost:3000(/)
const endpoint_path = "(/)users/auth(/)"
const endpoint_name = "(/)tfa-validation"
// Slash before of after
let path = base_url + endpoint_path + endpoint_name;
// Or without slash
path = `${base_url}/${endpoint_path}/${endpoint_name}`;
path = [base_url, endpoint_path, endpoint_name].join('/')
约定是否已经存在?解决方案有什么优势吗?
答案 0 :(得分:0)
我认为对此没有任何约定。 所以,我的看法是:
pyrobot