var fs = require("fs"); fs.readFile("test.txt", function (err, data) { if (err) throw err; console.log(data); });. The content of the test.txt was created ...
確定! 回上一頁