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

node.js学习笔记之写文件

时间:2016-12-17 22:38:12      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:cti   保存   intro   http   mod   exports   export   function   detail   

node.js之写文件

//---------------optfile.js------------------
var  fs=  require(‘fs‘);
module.exports={
    writefile:function(path,data){    //异步方式
        fs.writeFile(path,  data,  function  (err)  {
            if  (err)  {
                throw  err;
            }
            console.log(‘It\‘s  saved!‘);  //文件被保存
          });
    },
    writeFileSync:function(path,data){  //同步方式
        fs.writeFileSync(path,  data);
        console.log("同步写文件完成");
    }

}

教程学习地址: http://study.163.com/course/introduction/1003228034.htm#/courseDetail

node.js学习笔记之写文件

标签:cti   保存   intro   http   mod   exports   export   function   detail   

原文地址:http://www.cnblogs.com/pkutao/p/6193233.html

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