nodejs文件的读取
Posted 月疯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs文件的读取相关的知识,希望对你有一定的参考价值。
读取:
read.js
//导入http
var http = require('http');
var optfile = require('../module/optfile.js');
//创建
http.createServer(function (request,response) {
response.writeHead(200,{'Content-type':'text/html;charset=utf-8'});
if(request.url !== '/favicon.ico'){//清除二次访问
console.log('访问');
//闭包,回调这个函数,客户端打印程序
function recall(data){
response.write(data);
response.end("");
}
// optfile.readfileSync('../view/login.html');
optfile.readfile('../view/login.html',recall)
// response.end("世界");//不写会没有协议尾部,但是写了会访问俩次
console.log('主程序执行完毕');
}
}).listen(8001);
console.log('Server running at http://127.0.0.11:8001/')
module/optfile.js
var fs=require('fs');
module.exports={
readfileSync:function(path){//同步读取
var data = fs.readFileSync(path,'utf-8');
console.log('同步方法执行完毕');
// return data;
},
readfile:function(path,recall){ //异步执行
fs.readFile(path,function(err,data){
if(err){
console.log(err);
}else{
console.log(data.toString());
recall(data);
}
})
},
}
利用路由,传入不同的页面读取不同的数据:
router.js
var optfile = require('../module/optfile.js');
module.exports={
login:function(req,res){
//闭包,回调这个函数,客户端打印程序
function recall(data){
res.write(data);
res.end("");
}
optfile.readfile('../view/login.html',recall)
},
zhuce:function(req,res){
//闭包,回调这个函数,客户端打印程序
function recall(data){
res.write(data);
res.end("");
}
optfile.readfile('../view/zhuce.html',recall)
},
}
readfile.js
//导入http
var http = require('http');
// var optfile = require('../module/optfile.js');
var url=require('url');
var router = require('../module/router.js');
//创建
http.createServer(function (request,response) {
response.writeHead(200,{'Content-type':'text/html;charset=utf-8'});
if(request.url !== '/favicon.ico'){
var pathname=url.parse(request.url).pathname;
pathname=pathname.replace(/\\//,'');//替换前面/
console.log(pathname);
router[pathname](request,response);
}
}).listen(8021);
console.log('Server running at http://127.0.0.11:8021/');
optfile.js
var fs=require('fs');
module.exports={
readfileSync:function(path){//同步读取
var data = fs.readFileSync(path,'utf-8');
console.log('同步方法执行完毕');
// return data;
},
readfile:function(path,recall){ //异步执行
fs.readFile(path,function(err,data){
if(err){
console.log(err);
}else{
console.log(data.toString());
recall(data);
}
})
},
}
以上是关于nodejs文件的读取的主要内容,如果未能解决你的问题,请参考以下文章
使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面