Моя цель состоит в том, чтобы сравнить два sql результата, я много чего перепробовал, и я подошел к использованию обратных вызовов, и моей первой идеей было создать список для хранения двух обратных вызовов в первом аргумент и второй аргумент списка, а затем сравнить их, но это не так, я открыт для любого решения, моя цель - просто сравнить результаты запросов sql, мой код выглядит следующим образом:
var mysql = require('mysql');
var con = mysql.createConnection({
host: "localhost",
user: "root",
password: "",
database: "espace_membre"
});
var pseudo1 = "amine";
var socketid = '3485858585';
var peerId = '4444';
// 1. Call helloCatAsync passing a callback function,
// which will be called receiving the result from the async operation
console.log("1. function called...")
helloCatAsync(function(result) {
// 5. Received the result from the async function,
// now do whatever you want with it:
var Finale = [];
// console.log("5. result is: ", result);
Finale.push(result);
console.log(Finale);
});
// 2. The "callback" parameter is a reference to the function which
// was passed as argument from the helloCatAsync call
function helloCatAsync(callback) {
console.log("2. callback here is the function passed as argument above...")
// 3. Start async operation:
setTimeout(function() {
console.log("3. start async operation...")
console.log("4. finished async operation, calling the callback, passing the result...")
// 4. Finished async operation,
// call the callback passing the result as argument
con.connect(function(err) {
con.query("SELECT gender FROM gender WHERE socketid = '" + peerId + "'", function (err, result) {
callback(result);
});
});
con.connect(function(err) {
con.query("SELECT gender FROM gender WHERE socketid = '" + socketid + "'", function (err, result) {
callback(result);
});
});
}, Math.random() * 2000);
}