首先下载MysqL模块包
npm install MysqL --save-dev
MysqL=require("MysqL");
exports.connect=function(sql,param,callback){
var db=MysqL.createConnection({
host:"localhost",///数据库URL
port:"3306",//数据库端口,默认3306
user:"root",password:"root",database:"databaseName"
});
db.connect();
db.query(sql,callback);
db.end();
};
其他文件通过connect接口使用即可。
例如在app.js拦截http请求
success");
});
原文链接:https://www.f2er.com/nodejs/40279.html