nodejs有没有类似JAVA的basePath的方法
发布于 10 年前 作者 algz 4560 次浏览 最后一次编辑是 8 年前

nodejs有没有类似JAVA的basePath这样在当前页面获得项目路径的方法

2 回复

printf __dirname

__dirname 属于Global Objects

The name of the directory that the currently executing script resides in.

注意:【the currently executing script】

回到顶部