首页 > 代码库 > node.js学习笔记之调用函数
node.js学习笔记之调用函数
本文件和从其它模块引入函数;
从其他模块引入分只支持引入一个函数和多个 这两种
例:
test.js为主函数
var http=require(‘http‘); http.createServer(function (request,response){ response.writeHead(200,{‘Content-Type‘:‘text/html‘}) func1(response);//调用内部 otherfun.func3(response);//调用外部函数 console.log(‘访问‘); response.end("hello,world\n"); }).listen(8887); console.log(‘Server runing at http://127.0.0.1:8887‘); //调用外部函数需引入 var otherfun = require("./moudel/asFunc.js"); var func1=function(res) { console.log("func1"); res.write("hello,woshi func1"); };
asFunc.js
//支持多个函数 module.exports = { func2:function(res){ console.log("func2"); res.write("func2,,,"); }, func3:function(res){ console.log("func3"); res.write("func3,,,"); } } // var func2 = function(res){ // console.log("func2"); // res.write("func2,,,"); // } // module.exports = func2; //支持一个函数
执行结果
node.js学习笔记之调用函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。