6
ทำไม Node.js 'fs.readFile () ส่งคืนบัฟเฟอร์แทนสตริง
ฉันพยายามอ่านเนื้อหาของ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 …
378
javascript
file-io
node.js