Node.js入门二——简单读写文件

前言

本篇小编主要介绍node.js读取html,并且想html文件写入的方式。

内容

目录结构 file文件下存放了login.html,module文件下存放optfile.js

这里写图片描述

1.optfile.js

var fs=require('fs');
module.exports={
    readfileSync:function(path){//同步读取
       var data=fs.readFileSync(path,'utf-8');
       console.log(data);   
       console.log("同步方法执行完毕");

    },readfile:function(path){ //异步执行
        fs.readFile(path,function(err,data){
            if(err){
                console.log(err);
            }else{
                console.log(data.toString());
            }
        });
        console.log("异步方法执行完毕");
    }
}

2.主文件JS

var http=require('http');
var optfile=require('./module/optfiles');
http.createServer(function(request,response){
    response.writeHead(200,{'Content-Type':'text/html;charset=utf-8'});
    if(request.url!="/favicon.ico"){//清除第二次访问
        optfile.readfileSync('./file/login.html');
        response.end('ok');
        console.log('主程序结束');
    }
}).listen(8000);

console.log("这个路由");

结语

感谢大家浏览,希望带给你帮助!

相关文章

这篇文章主要介绍“基于nodejs的ssh2怎么实现自动化部署”的...
本文小编为大家详细介绍“nodejs怎么实现目录不存在自动创建...
这篇“如何把nodejs数据传到前端”文章的知识点大部分人都不...
本文小编为大家详细介绍“nodejs如何实现定时删除文件”,内...
这篇文章主要讲解了“nodejs安装模块卡住不动怎么解决”,文...
今天小编给大家分享一下如何检测nodejs有没有安装成功的相关...