如何使用this来访问函数

时间:2019-02-22 17:53:43

标签: javascript node.js mariadb

我的问题类似于this

但是,我的系统运行在Node.js中,似乎有点复杂。

服务器端不是我构建的,而是我无法联系的其他人。他写的代码也大不相同。

我有server.post('/rpc/Account/IsLoggedIn', function(req: any, res: any, next: () => {}) { req.body = 'abcd' next(); }); ,它看起来像这样:

enter image description here

db.js像这样使用routes/email.js

enter image description here

当我单击一个按钮时。我收到此错误:

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

0 个答案:

没有答案