node文件路径

Others 2018-07-04 07:35:53 2018-07-04 07:35:53 2215 次浏览

只有在 require() 时才使用相对路径(./, ../) 的写法,其他地方一律使用绝对路径,如下:

// 当前目录下 
path.dirname(__filename) + ‘/test.js’; 
// 相邻目录下 
path.resolve(__dirname, ‘../lib/common.js’);