ホームページ > 記事 > ウェブフロントエンド > nodeJSモジュールの簡単な使い方
この記事では、主にnodeJSモジュールの簡単な使用法を紹介し、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. 起動モジュールのインデックスを定義します。 js
var class1=require('./kclass.js'); class1.add('高一班',['张三','李四']);
動作結果:
関連する推奨事項:
Nodejsモジュールのロードと動作原理の詳細な説明以上がnodeJSモジュールの簡単な使い方の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。