nodejs调用函数和模块
Posted 月疯
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs调用函数和模块相关的知识,希望对你有一定的参考价值。
内部函数调用:
//导入http
var http=require('http');
//导入模块函数
//创建
http.createServer(function (request,response) {
response.writeHead(200,{'Content-type':'text/html;charset=utf-8'});
if(request.url!=='/favicon.ico'){//清除二次访问
func1(response);
response.end("世界");//不写会没有协议尾部,但是写了会访问俩次
}
}).listen(8000);
console.log('Server running at http://127.0.0.11:8000/')
//函数
function func1(res) {
console.log(func1)
res.write("hello,我是func1");
}
外部模块调用:
fun2.js(单个外部函数调用)
function unc2(res) {
console.log('我是func2');
res.write('hello,我是func2');
res.end("");
}
//外部引用
module.exports = unc2;//只支持一个函数
//导入http
var http=require('http');
//导入模块函数
var func2=require('../module/fun2.js');
//创建
http.createServer(function (request,response) {
response.writeHead(200,{'Content-type':'text/html;charset=utf-8'});
if(request.url!=='/favicon.ico'){//清除二次访问
//调用外部函数
func2(response);
}
}).listen(8000);
console.log('Server running at http://127.0.0.11:8000/')
多个函数一起调用:
morefun.js
//支持多个函数
module.exports={
htt:function(res){
console.log("htt");
res.write("htt");
},
juju:function(res){
console.log("juju");
res.write("juju");
},
lulu:function(res){
console.log("lulu");
res.write("lulu");
},
}
//导入http
var http=require('http');
//导入模块函数
var morefun=require('../module/morefun.js');
//创建
http.createServer(function (request,response) {
response.writeHead(200,{'Content-type':'text/html;charset=utf-8'});
if(request.url!=='/favicon.ico'){//清除二次访问
funcname='htt';
morefun[funcname](response);
morefun['juju'](response);
morefun['lulu'](response);
response.end("世界");//不写会没有协议尾部,但是写了会访问俩次
}
}).listen(8000);
console.log('Server running at http://127.0.0.11:8000/')
效果:
以上是关于nodejs调用函数和模块的主要内容,如果未能解决你的问题,请参考以下文章
Node.js 使用jQuery取得Nodejs http服务端返回的JSON文字示例