为啥不将数据库查询中的移动结果推送到变量中?

Posted

技术标签:

【中文标题】为啥不将数据库查询中的移动结果推送到变量中?【英文标题】:Why doesn't push move results from DB query into variable?为什么不将数据库查询中的移动结果推送到变量中? 【发布时间】:2017-08-18 16:55:33 【问题描述】:

意图

在我的路由中建立与数据库的连接,运行查询,捕获结果,并使其可供我的索引视图访问以在 DOM 中呈现。

问题

DB 在控制台成功连接并返回结果。但是,无法将此结果推送到“finalResult”数组中。

var express = require('express');
var router = express.Router();

router.get('/', function(req, res) 

// Establish Connection with Database
var mysql = require('mysql');
var connection = mysql.createConnection(
    host : '127.0.0.1',
    user : 'root',
    password : 'xxxxxxx',
    database : 'my_db'
);

connection.connect();

// // Query and post result to console
connection.query('SELECT * FROM products', function(error, results, fields) 
    if (error) throw error;
    doSomething(results[0]);
);

connection.end();


var finalResult = ['hello'];

function doSomething(results) 
    console.log(results.name);
    finalResult.push(results.name);


console.log(finalResult);


// Render/make accessible to views
res.render('index', 
    pageTitle: 'Home',
    result: finalResult
);
);

module.exports = router;

doSomething(results[0]); 成功将结果推送到doSomething() 函数中,因为console.log(results.name) 返回了正确的查询结果。 finalResult.push(results.name) 会出现问题,因为 console.log(finalResult) 仅在应该包含“hello”加上查询结果时才返回包含“hello”的数组。

【问题讨论】:

【参考方案1】:

请注意,当您从 mysql 模块查询数据库时是同步的(查询以函数作为参数--回调)。这意味着您不能将结果值作为查询函数之外的变量。尝试使用 async/await 或 promise 来获取返回值。

【讨论】:

【参考方案2】:

在将新数据推送到 finalResult 数组后,尝试在 doSomething 函数中编写 console.log(finalResult)。

我认为您只会看到“helo”,因为 console.log(finalResult) 在 doSomething 函数完成之前执行(在将数据添加到 finalResult 数组之前)。

【讨论】:

是的,确实有效。虽然我仍然很困惑..我怎样才能让它先执行 doSomething() ?我希望能够将结果传递给 res.render 函数。 您可以将 res.render..... 移动到 connection.query 函数,在调用 doSomething 函数之后,或者为 res.rende 添加一个函数并在 doSomething 之后调用此函数功能。

以上是关于为啥不将数据库查询中的移动结果推送到变量中?的主要内容,如果未能解决你的问题,请参考以下文章

Kafka-Connect Cassandra Sink 连接器不将数据推送到 Cassandra

将文件推送到 Github/Gitlab 而不将其添加到 .git?

为啥不需要的数据被推送到我的阵列中?

如何在nodeJS的mysql查询中将值推送到数组?

将 mysql 查询结果推送到客户端 GWT

$emit 对象到父组件,并推送到数组。数组中的对象仍然是反应性的,为啥?