js readfile
时间: 2023-07-08 08:10:11 浏览: 90
js 读取文件
读取文件可以使用 Node.js 的 fs 模块中的 readFile 方法,具体代码如下:
```javascript
const fs = require('fs');
fs.readFile('/path/to/file', (err, data) => {
if (err) throw err;
console.log(data);
});
```
其中,`/path/to/file` 是文件的路径,`err` 是错误对象,`data` 是文件内容。在回调函数中可以对读取到的文件内容进行处理。
阅读全文