码迷,mamicode.com
首页 > Web开发 > 详细

nodejs fs.readFile

时间:2017-11-05 19:13:28      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:bsp   asc   技术分享   输出   ocs   div   read   http   tps   

fs.readFile(path[, options], callback)

 

 

 

 

 

 

demo 

02.js

var fs=require("fs");


fs.readFile(test.txt,function (err,data) {
    if (err ) {
        console.log("读取失败")
    } else {
        //输出test.txt的内容
        console.log(data.toString());
    }


});

test.txt

 how are you 
  you are good

输出结果:

技术分享

 

nodejs fs.readFile

标签:bsp   asc   技术分享   输出   ocs   div   read   http   tps   

原文地址:http://www.cnblogs.com/guangzhou11/p/7788198.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!