node.js学习笔记_模块调用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了node.js学习笔记_模块调用相关的知识,希望对你有一定的参考价值。

js创建一个类

然后在另一程序中实例化使用这个类.

 
1.创建一个User类
//--------------User.js--------------  
function  User(id,name,age){
    技术分享this.id=id;
    技术分享this.name=name;
    this.age=age;
    this.enter=function(){
        console.log("进入图书馆");
    }
}
module.exports    =    User;
2.调用
//----------------------n3_modalcall.js-------------  
var http = require(‘http‘);    
var  User  =  require(‘./models/User‘);

http.createServer(function        (request,        response)        {        
                response.writeHead(200,        {‘Content-Type‘:        ‘text技术分享ml;        charset=utf-8‘});        
        if(request.url!=="/favicon.ico"){        //清除第2此访问
          user = new  User(1,‘张三‘,30);         //创建一个user
          user.enter();
          response.end(‘‘);    
    }
}).listen(8000);        
console.log(‘Server running at http://127.0.0.1:8000/‘);


本文出自 “南山采菊” 博客,请务必保留此出处http://hezudao.blog.51cto.com/6872139/1870425

以上是关于node.js学习笔记_模块调用的主要内容,如果未能解决你的问题,请参考以下文章

node.js学习笔记之调用函数

Nodejs学习笔记----- 模块系统和函数

node.js学习笔记

node.js学习笔记_模拟路由

node.js学习笔记_模拟路由

系列文章--Node.js学习笔记系列