這次帶給大家怎麼使用nodeJS模組,使用nodeJS模組的注意事項有哪些,下面就是實戰案例,一起來看一下。
1.定義Student模組,Teacher模組
function add(student){ console.log('Add Student:'+student); } exports.add=add; function add(teacher){ console.log('Add Teacher:'+teacher); } exports.add=add;
2.定義kclass模組
//引入student模块 var student=require('./student'); //引入teacher模块 var teacher=require('./teacher.js'); function add(teacherName,students){ teacher.add(teacherName); students.forEach(function(item,index){ student.add(item); }); } //向模块对象,注册方法 exports.add=add;
3.定義啟動模組index.js
var class1=require('./kclass.js'); class1.add('高一班',['张三','李四']);
運行結果:
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是怎麼使用nodeJS模組的詳細內容。更多資訊請關注PHP中文網其他相關文章!