一、调用本js文件中的函数
var http = require('http'); http.createServer(function (request,response){ response.writeHead(200, {'Contet-Type':'text/html;charset=utf-8'}); if(request.url!=='/favicon.ico'){ funl(response); response.end(''); } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/'); function funl(res){ console.log('fun1'); res.write('hello ,我是fun1'); }
运行结果:
二、调用外部的js文件
function fun2(res){ console.log('我是,fun2'); res.write('你好我是fun2'); } // 想把此js声明为一个函数,加下面代码,只适用于文件中只有一个函数 module.exports = fun2; var http = require('http'); // ortherFun 就代替了fun2 var ortherFun = require('./../otherjs/out.js'); http.createServer(function (request,response){ response.writeHead(200, {'Contet-Type':'text/html;charset=utf-8'}); if(request.url!=='/favicon.ico'){ // funl(response); ortherFun(response); response.end(''); } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/'); function funl(res){ console.log('fun1'); res.write('hello ,我是fun1'); }
外部js文件内有多个函数
// 支持多个函数 module.exports={ fun2:function(res){ console.log('我是fun2'); res.write('你好,我是fun2'); }, fun3:function(res){ console.log('我是fun3'); res.write('你好,我是fun3'); } } var http = require('http'); var ortherFun = require('./../otherjs/out.js'); http.createServer(function (request,response){ response.writeHead(200, {'Contet-Type':'text/html;charset=utf-8'}); if(request.url!=='/favicon.ico'){ // funl(response); // ortherFun(response); ortherFun.fun2(response); ortherFun.fun3(response); response.end(''); } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/'); function funl(res){ console.log('fun1'); res.write('hello ,我是fun1'); }
用字符串调用对应的函数
var http = require('http'); var ortherFun = require('./../otherjs/out.js'); http.createServer(function (request,response){ response.writeHead(200, {'Contet-Type':'text/html;charset=utf-8'}); if(request.url!=='/favicon.ico'){ // funl(response); // ortherFun(response); //ortherFun.fun2(response); //ortherFun.fun3(response); // 用字符串调用对应的函数 //ortherFun['fun2'](response); //ortherFun['fun3'](response); // 还可以写成下面这样 funname = 'fun2'; ortherFun[funname](response); response.end(''); } }).listen(8000); console.log('Server running at http://127.0.0.1:8000/'); function funl(res){ console.log('fun1'); res.write('hello ,我是fun1'); }
总结
以上所述是小编给大家介绍的nodejs中函数的调用实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
标签:
nodejs函数的调用
免责声明:本站文章均来自网站采集或用户投稿,网站不提供任何软件下载或自行开发的软件!
如有用户或公司发现本站内容信息存在侵权行为,请邮件告知! 858582#qq.com
狼山资源网 Copyright www.pvsay.com
暂无“nodejs中函数的调用实例详解”评论...
RTX 5090要首发 性能要翻倍!三星展示GDDR7显存
三星在GTC上展示了专为下一代游戏GPU设计的GDDR7内存。
首次推出的GDDR7内存模块密度为16GB,每个模块容量为2GB。其速度预设为32 Gbps(PAM3),但也可以降至28 Gbps,以提高产量和初始阶段的整体性能和成本效益。
据三星表示,GDDR7内存的能效将提高20%,同时工作电压仅为1.1V,低于标准的1.2V。通过采用更新的封装材料和优化的电路设计,使得在高速运行时的发热量降低,GDDR7的热阻比GDDR6降低了70%。