您好,登錄后才能下訂單哦!
一、調用普通函數
聲明函數:
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);
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。