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

Nodejs_day04

时间:2015-09-16 23:33:05      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

Nodejs模块系统

1.如何创建一个模块

创建一个js(hello.js)

exports.world = function(){//为什么可以这么写,因为exports是nodejs公开的借口

  console.log(‘hello nodejs‘);

}

使用:

var hello = require(‘./hello‘)

hello.world();//打印结果:hello nodejs

 

有时候我们只想把一个对象封装到模块中,我们可以这么操作

function Hello(){

  var name ;

  this.setName = function(thyname){

    name = thyname;

  }

  this.sayHello = function(){

    console.log(‘hello ‘+name);

  }

}

module.exports = Hello;

使用

var Hello = require(‘./hello‘);//默认后缀名就是.js

var hello = new Hello();

hello.setName(‘liyajie‘);

hello.sayHello();

 

//结果打印:hello liyajie

Nodejs_day04

标签:

原文地址:http://www.cnblogs.com/liyajie/p/4814814.html

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