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$