の内容を読もうとしています test.txt
(JavaScriptソースの同じフォルダーにある)次のコードを使用して表示ています。
var fs = require("fs");
fs.readFile("test.txt", function (err, data) {
if (err) throw err;
console.log(data);
});
のコンテンツtest.txt
は作成されましたnano
:
Node.js readFile()のテスト
そして私はこれを手に入れています:
Nathan-Camposs-MacBook-Pro:node_test Nathan$ node main.js
<Buffer 54 65 73 74 69 6e 67 20 4e 6f 64 65 2e 6a 73 20 72 65 61 64 46 69 6c 65 28 29>
Nathan-Camposs-MacBook-Pro:node_test Nathan$