当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js fs.readFile()用法及代码示例


fs.readFile()方法是一种内置方法,用于读取文件。此方法将整个文件读入缓冲区。要加载fs模块,我们使用require()方法。例如:var fs = require('fs');

用法:

fs.readFile( filename, encoding, callback_function )

参数:该方法接受上述和以下所述的三个参数:


  • filename:它保存要读取的文件名或完整路径(如果存储在其他位置)。
  • encoding:它保存文件的编码。默认值为“ utf8”。
  • callback_function:这是在读取文件后调用的回调函数。它带有两个参数:
    • err:如果发生任何错误。
    • data:文件内容。

返回值:它返回存储在文件中的内容/数据或错误(如果有)。

以下示例说明了Node.js中的fs.readFile()方法:

范例1:

// Node.js program to demonstrate 
// the fs.readFile() method 
  
// Include fs module 
var fs = require('fs'); 
  
// Use fs.readFile() method to read the file 
fs.readFile('Demo.txt', 'utf8', function(err, data){ 
      
    // Display the file content 
    console.log(data); 
}); 
  
console.log('readFile called');

输出:

readFile called
undefined

说明:输出未定义,表示文件为空。它开始读取文件并同时执行代码。读取文件后,将调用该函数,同时打印“ readFile named”语句,然后打印文件的内容。

范例2:

// Node.js program to demonstrate 
// the fs.readFile() method 
  
// Include fs module 
var fs = require('fs'); 
  
// Use fs.readFile() method to read the file 
fs.readFile('demo.txt', (err, data) => { 
    console.log(data); 
 })

输出:

undefined

参考: https://nodejs.org/api/fs.html#fs_fs_readfile_path_options_callback



相关用法


注:本文由纯净天空筛选整理自primasanghvi大神的英文原创作品 Node.js | fs.readFile() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。