码迷,mamicode.com
首页 > Web开发 > 详细

271 Node.js模块化开发:,,,,

时间:2020-01-28 15:32:58      阅读:78      评论:0      收藏:0      [点我收藏+]

标签:js模块化开发   http   name   对象   alt   hang   exports   export   hello   

技术图片

技术图片

技术图片

技术图片

技术图片

技术图片

// console.log(112);

const add = (n1, n2) => n1 + n2;
exports.add = add;

// const a = require('./03.module-a.js');
const a = require('./03.module-a');
console.log(a.add(10, 20));  // 30
console.log(111); // 111

技术图片

技术图片

const greeting = name => `hello ${name}`;
const x = 100;
exports.x = x;
module.exports.greeting = greeting;

// 当exports对象和moudle.exports对象指向的不是同一个对象时 以module.exports为准
module.exports = {
    name: 'zhangsan'
}

exports = {
    age: 20
}

const a = require('./04.module.exports.js');
// console.log(a.greeting('zhangsan'));
console.log(a);  // { name: 'zhangsan' }

271 Node.js模块化开发:,,,,

标签:js模块化开发   http   name   对象   alt   hang   exports   export   hello   

原文地址:https://www.cnblogs.com/jianjie/p/12238113.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!