码迷,mamicode.com
首页 > 其他好文 > 详细

node 模块正确暴露方法

时间:2019-12-17 18:21:07      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:str   zh-cn   code   doc   serve   nod   exports   sid   写法   

一个node模块,为了能够服用,就需要将其暴露,那么如何正确写呢?(参考:https://developer.mozilla.org/zh-CN/docs/Learn/Server-side/Express_Nodejs/Introduction

【正确写法A】

exports.area = width => { return width * width; };
exports.perimeter = width => { return 4 * width; };

【正确写法B】

module.exports.area = width => { return width * width; };
module.exports.perimeter = width => { return 4 * width; };

【正确写法C】

// 这种写法只能用 module.exports
module.exports = {
  area: width => { return width * width; },
  perimeter: width => { return 4 * width; }
};

 

node 模块正确暴露方法

标签:str   zh-cn   code   doc   serve   nod   exports   sid   写法   

原文地址:https://www.cnblogs.com/lishidefengchen/p/12055805.html

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