我的问题类似于this。
但是,我的系统运行在Node.js中,似乎有点复杂。
服务器端不是我构建的,而是我无法联系的其他人。他写的代码也大不相同。
我有server.post('/rpc/Account/IsLoggedIn', function(req: any, res: any, next: () => {}) {
req.body = 'abcd'
next();
});
,它看起来像这样:
db.js
像这样使用routes/email.js
:
当我单击一个按钮时。我收到此错误:
db.js
db.emailRequest is not a function
中的,位于文件末尾。它最初是这样的:
db.js
我的风格是在路由器中使用module.exports = new dbHelper;
。
db.js
但是没有用。因此,我这样更改了db.get().query(sql, input, function(err,res){
//TODO:
});
的结尾:
db.js
并且还在exports.get = function(){
console.log("exports.get");
return pool;
}
中添加了一些代码,如下所示:
app.js
我该怎么办?
db.connect(function(err){
if(err){
console.log('Unable to connect to MariaDB');
process.exit(1);
}
});
的完整代码在这里:
db.js