1. 程式人生 > >nodejs 一個 js匯出兩個類

nodejs 一個 js匯出兩個類

var DB = require('../DB');
function User(user){
    this.name=user.name;
    this.password=user.password;
    this.email=user.email;
}
module.exports.User=User;
//查詢使用者資訊
User.get=function(name,callback){
    DB.select("select * from users where username=$1",[name],function(err,result){


           callback(err,result);
        }
    );


}
//儲存使用者資訊
User.prototype.save=function(callback){
    //要存入資料庫的使用者文件
    var user={
        name:this.name,
        password:this.password,
        email:this.email
    }
    DB.add("insert into users(name,password,email)values($1,$2,$3)",[user.name,user.password,user.email],callback);
}


function hello(Hello){
    this.id=Hello.id;
    this.name=Hello.name;
    this.height=Hello.height;
}
module.exports.hello=hello;


hello.get=function(callback){
    DB.select("select * from hello",[],function(err,result){


            callback(err,result);
        }

    );

//使用

var User=require("../../datamodules/User");
function hello(req,res){
    //列印函式名
    var m_FuncJson=baseCall.GetRouteFuncJson(req,res);
    User.User.get('xn ',function(err,result){
        console.log(result);
        res.send(m_FuncJson.call.name);
    });






 }