欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

怎样使用nodeJS模块

程序员文章站 2022-03-18 14:09:20
...
这次给大家带来怎样使用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('高一班',['张三','李四']);

运行结果:

怎样使用nodeJS模块

相信看了本文案例你已经掌握了方法,更多精彩请关注其它相关文章!

推荐阅读:

JS怎样使用前后端同构

以上就是怎样使用nodeJS模块的详细内容,更多请关注其它相关文章!

相关标签: nodeJS 模块