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);
    });






 }


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值