0

我正在阅读 Smashing Node.JS 书,并且在执行文件浏览器示例时不断收到参考错误。为什么会发生这种情况,我该如何纠正这个问题。我已经按照书中的示例进行操作,所以我对正在发生的事情有点迷茫

    /**
* Module dependencies. 
*/ 

    var fs = require('fs')
        , stdin = process.stdin
        , stdout = process.stdout;

    fs.readdir(process.cwd(), function (err, files) {
      console.log('');

     if (!files.length) {
      return console.log('  \033[31m No files to show!\033[39m\n'); 
     } 

      console.log(' Select which file or directory you want to see\n');

      function file(i) {
    var filename = files[i]; 

    fs.stat(__dirname + '/' + filename, function (err, stat) {
      if (stat.isDirectory()) {
        console.log('   '+i+'   \033[36m' + filename + '/\033[39m'); 
      } else {
        console.log('       '+i+'   \033[90m' + filename + '\033[39m')
      }

      if (++i == files.length) {
        read();
      } else{
        file(i); 
      }
    });
  }

  file(0); 
});

function read() {
    console.log(''); 
    stdout.write('  \033[33mEnter your choice: \033[39m');

    stdin.resume(); 
    stdout.setEncoding('utf8'); 

    stdin.on('data', option); 

    function option( data ) {
        if (typeof files[Number(data)] !== "undefined" ) {
            stdout.write('  \033[31mEnter your choice: \033[39m');
        } else {
            stdin.pause(); 
        }
    }

}
4

2 回答 2

1

read()被调用的那一刻,它无法访问files,因此在使用 时会出现引用错误typeof files[...]

一个想法可能是将});after移动file(0)到文件的底部,从而读入fs.readdir(process.cwd(), function (err, files) {定义files.

但是,我真的希望这个例子能在你的书中得到扩展:现在,它不会输出你选择的目录的目录内容,而是会一遍又一遍地提示你输入一个数字。

于 2012-11-05T02:15:21.717 回答
0

交替将文件传递给读取函数。

请注意,示例代码真的很糟糕,我希望作者试图说明这一点,而不是将其作为好的代码。

因此,继续使用糟糕的代码是一个完整的工作示例:

var fs = require('fs')
    , stdin = process.stdin
    , stdout = process.stdout;

fs.readdir(process.cwd(), function (err, files) {
    console.log('');

    if (!files.length) {
        return console.log('  \033[31m No files to show!\033[39m\n');
    }

    console.log(' Select which file or directory you want to see\n');

    function file(i) {
        var filename = files[i];

        fs.stat(__dirname + '/' + filename, function (err, stat) {
            if (stat.isDirectory()) {
                console.log('   '+i+'   \033[36m' + filename + '\033[39m');
            } else {
                console.log('       '+i+'   \033[90m' + filename + '\033[39m')
            }

            if (++i == files.length) {
                read(files);
            } else{
                file(i);
            }
        });
    }

    file(0);
});

function read(files) {
    console.log('');
    stdout.write('  \033[33mEnter your choice: \033[39m');

    stdin.resume();
    stdout.setEncoding('utf8');

    stdin.on('data', option);

    function option( data ) {
        var filename = files[Number(data)];
        if (typeof filename !== "undefined" ) {
            stdout.write('\n\033[90m' + filename + ':\n\n');
            var fileContents = fs.readFileSync(filename)
            stdout.write(fileContents);
            stdout.write('\033[39m\n\n');

            stdout.write('  \033[31mEnter your choice: \033[39m');
        } else {
            stdin.pause();
        }
    }
}
于 2012-11-05T09:39:34.770 回答