开发者问题收集

未找到 Node.js 文件

2011-09-05
2982

我在以下文件结构中使用 Node.exe

Node/
  node.exe
  index.js
  /view
     index.html

运行以下代码时:

  var html;
  fs.readFileSync('/view/index.html', function(err, data) { 
    if(err){
      throw err;
    }   
    html = data;  
  });

我收到以下错误:

Error: ENOENT, The system cannot find the file specified. '/view/index.html'

您能看出是什么导致了错误吗?我对 node.js 还很陌生。

附加信息: 我正在运行 Windows 7 64 位,最新版本的 node.exe。

我找到了解决方案!

当通过 cmd 运行 node.exe 时,node.exe 的默认目录是用户.... 这就是我出错的地方,它使用了与 node.exe 所在目录不同的目录。

2个回答

几件事:

  • 您应该先将相对路径解析为真实路径,然后尝试读取文件。
  • 异步读取文件以获取回调
  • 应更正相对路径。我代码中的“./view/index.html”是相对于您启动 node.js 引擎的位置的路径。

粗略代码将是:


        // get real path from relative path
        fs.realpath('./view/index.html', function(err, resolvedPath) {
            // pass the resolved path to read asynchronously
            fs.readFile(resolvedPath, function(err, data) { 
                // assign the variable per your use case
                html = data;
            })
        });

请注意,我使用的是 4.11 版本(最新稳定版本)

momo
2011-09-05

您可能想放弃同步部分。只有当您有回调时才使用 readFile

另外:./path,而不是 /path。

corazza
2011-09-05