题记
node.js模块系统的用法
引入模块
创建一个mian.js文件:
var hello = require('./hello');
hello.world();
导出模块
创建hello.js文件:
exports.world = function() {
console.log('Hello World');
}
把对象封装到模块中
语法:
module.exports = function() {
// ...
}
创建 hello.js文件:
//hello.js
function Hello() {
var name;
this.setName = function(thyName) {
name = thyName;
};
this.sayHello = function() {
console.log('Hello ' + name);
};
};
module.exports = Hello;
创建main.js文件: 文章来源:https://www.toymoban.com/news/detail-722591.html
//main.js
var Hello = require('./hello');
hello = new Hello();
hello.setName('BYVoid');
hello.sayHello();
后记
觉得有用可以点赞或收藏! 文章来源地址https://www.toymoban.com/news/detail-722591.html
到了这里,关于11.Node-模块系统的用法的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!