首页 > 代码库 > node.js学习笔记之写文件

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



本文出自 “南山采菊” 博客,请务必保留此出处http://hezudao.blog.51cto.com/6872139/1883644

node.js学习笔记之写文件