首页 > 代码库 > nodeJS调用函数
nodeJS调用函数
一、调用普通函数
声明函数:
function fun1(res) { console.log("fun1"); res.write("I‘m fun1"); }
在同一文件内调用:
fun1(response);
二、调用其它文件中的函数
声明函数并导出:
function fun2(res) { console.log(‘我是fun2‘); res.write(‘I‘m fun2‘); } module.exports = fun2;
引入模块:
var otherfun = require(‘./models/otherfuns‘);
‘./models/otherfuns.js‘ 表示fun2的所在文件路径
调用函数:
otherfun.fun2(response);
三、导出多个函数
module.exports = { fun2:function(res){ console.log(‘我是fun2‘); res.write(‘你好,我是fun2‘); }, fun3:function(res){ console.log(‘我是fun3‘); res.write(‘你好,我是fun3‘); } }
四、用字符串调用对应的函数
otherfun[‘fun2‘](response); otherfun[‘fun3‘](response);
nodeJS调用函数
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。