Node.js 模組
建立模組
定義模組:module.exports = {}
使用模組:require(模組名稱)
require尋找模組:檔案模組載入區–> 原生模組–> 檔案–>快取檔案模組
案例:
hello.js—定義模組
[code]function Hello () { var name; this.setName = function (aName) { name = aName; }; this.getName = function () { console.log('Hi, ' + name); } } module.exports = Hello;
getHello.js—引入模組
[code]var Hello = require('./hello.js'); var hello = new Hello(); hello.setName('张三'); hello.getName();
PHP中文網(www.php.cn)!