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

nodejs-fs使用

时间:2015-12-06 09:58:27      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:

(1)读取文本文件时须添加上‘encoding‘才能输出可读的内容.

02.txt

hello,world!

nodejs_readfile.js

var fs = require(‘fs‘);
fs.readFile(‘./02.txt‘, {‘encoding‘:‘utf8‘},function(err,data){
	if(err) throw err;
	console.log(data);
});

(2)

 

nodejs-fs使用

标签:

原文地址:http://www.cnblogs.com/juedui0769/p/5023005.html

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