我有一个代码片段来运行数组中的元素列表(确切地说是mysql主机),任务是遍历数组中的每个元素 - 使用元素(hostname)连接到mysql,运行一个查询它并将结果放在json中。
最后一个元素的结果未在最终数组中捕获,而其他元素则为。
以下是配置数组和代码段
配置:
config.mysql.list = ['host1', 'host2', 'host3' , 'host1'];
可以重复主机名。响应中结果对象的计数应该等于数组中元素的数量。
const config = require('../../config.js');
//For RESTful API
const express = require('express');
const router = express.Router();
const promise=require('bluebird');
//For MySQL connection
const mysql = require('mysql');
promise.promisifyAll(config);
promise.promisifyAll(require('mysql/lib/Connection').prototype);
promise.promisifyAll(require('mysql/lib/Pool').prototype);
//Home page venue type wise breakup
router.get('/databaseRecords',function(req,res){
// Some vars
let arrStatus =[];
// Build the connection
function getConnection(serverHost){
// Setup the MySQL connection
let connection = mysql.createConnection({
host : serverHost,
user : config.mysql.user,
password : config.mysql.password,
database : config.mysql.database
});
// <- note the second return
return connection.connectAsync().return(connection);
}
promise.each(config.mysql.list,function(serverHost) {
//Create connection
return getConnection(serverHost).then(function(conn){
// Slave status
let qry = 'SELECT * FROM tableName limit 1';
// Response ?
conn.queryAsync(qry).then(function(rows){
let strresponse = JSON.stringify(rows);
let jsonresponse = JSON.parse(strresponse);
jsonresponse[0].whichRec=serverHost;
arrStatus.push(jsonresponse[0]);
//done
conn.endAsync();
});
});
}).then(function(){
// Emit the response
res.json({'data':arrStatus});
}).catch(function(err){
let respErr = JSON.parse(err.error);
res.json({'Error':respErr});
});
});
//Export routes
module.exports = router;
对于代码片段中我真正缺少的内容感到有点困惑。
答案 0 :(得分:1)
在conn.queryAsync(qry)前放回。您需要返回conn.queryAsync返回的promise。希望这会有所帮助。