我刚刚开始使用 node.js。这是我的第一次尝试,在 Windows 7 中从 txt 文件读取到 node.js 终端时遇到问题。在 Windows 中使用 Node.js 应用程序,我键入“node sample.js”和 sample.js 并sample.txt 文件位于我桌面上的文件夹中,但 node.exe 应用程序不读取该文件。另外我不确定它如何知道目录路径有什么见解吗?这是我的代码:
var fs = require("fs");
console.log("Starting");
fs.readFile("sample.txt", function(error, data) {
console.log("Contents of file: " + data);
});
console.log("Carrying on executing");