我的app.get
Express服务器中有node.js
。
app.get('/api/court/:num', function(req, res, next) {
var courts = new CourtsHandler;
if (req.params.num == 0) //get array of all courts
return res.send(200, courts.courtsAmount());
});
正在调用此函数:
this.courtsAmount = function(){
connection.query('SELECT COUNT(*) AS result from courts', function(err, rows, fields){
if (err) throw err;
connection.end();
console.log(rows[0].result);
return rows[0].result;
});
};
courtAmount函数被调用。但在我的客户看来,我没有得到重新审视。相反,我只是得到一个空物体。
我认为这与我的.query
有回调的事实有关,因此res.send
在实际触发courtsAmount
之前发送一个空对象。
我该如何解决这个问题?
答案 0 :(得分:1)
你的courtAmount不返回任何东西。相反,你应该在其中使用回调(或承诺),做这样的事情:
this.courtsAmount = function(callback){
connection.query('SELECT COUNT(*) AS result from courts', function(err, rows, fields){
if (err) throw err;
connection.end();
console.log(rows[0].result);
callback(rows[0].result);
});
};
和
app.get('/api/court/:num', function(req, res, next) {
var courts = new CourtsHandler;
if (req.params.num == 0) //get array of all courts
courts.courtsAmount(function(result) { res.send(200, result) });
});