node.js中函数的两种封装方式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node.js中函数的两种封装方式相关的知识,希望对你有一定的参考价值。
1.创建一js文件(funs.js)
function controller(req,res){
//res.write("发送");
call(‘hello‘,req,res);
res.end("");
}
module.exports = controller; //此文件中只有一个函数被发布
其他文件中调用:
require(‘./models/funs.js‘);
controller(request,response); //直接调用
2.funs.js中
//---可声明多个函数
module.exports={
getVisit:function(){
return visitnum++;
},
add:function(a,b){
return a+b;
}
}
调用:
var funs = require(‘./models/funs.js‘);
funs.getVisit();
funs.add(6,3);
3.动态函数调用
详见:http://study.163.com/course/introduction/1003228034.htm#/courseDetail
中的第3节
本文出自 “南山采菊” 博客,请务必保留此出处http://hezudao.blog.51cto.com/6872139/1869143
以上是关于node.js中函数的两种封装方式的主要内容,如果未能解决你的问题,请参考以下文章