时间:2021-05-26
一、调用本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 就代替了fun2var 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中函数的调用实例详解,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
C++中const对象与const成员函数的实例详解const对象只能调用const成员函数:#includeusingnamespacestd;classA{
COM组件中调用JavaScript函数详解及实例要求是很简单的,即有COM组件A在IE中运行,使用JavaScript(JS)调用A的方法longCalc()
Java中synchronize函数的实例详解java中的一个类的成员函数若用synchronized来修饰,则对应同一个对象,多个线程像调用这个对象的这个同步
C++中回调函数详解及简单实例回调函数调用关系图对于第一种情况,主程序可以从执行到回调函数,也可以不执行回调函数,关键看宿主函数是否调用了回调函数。对于第二种情
Linux在Shell脚本中使用函数实例详解Shell的函数Shell程序也支持函数。函数能完成一特定的功能,可以重复调用这个函数。函数格式如下:函数名(){函