我想做到这一点,所以当我按下一个按钮时,它将触发一个app.post。这将使sql选择发生。如果从中选择返回一个特定的值,我希望代码不运行。我已经为此做了所有代码,但是我需要一个setTimeout。我不能使用setTimeout,因为它不允许我使用req和res。 这是一个小样本。
app.post('/home, (req, res) => {
con.query('SELECT * FROM table', (result) => {
check = result;
});
//setTimeout starts here
var checker = check.includes('Hello');
if (checker == true) {
console.log(1);
} else {
console.log(0)
}
//setTimeout ends here with a delay of 30
});
是否可以使用node.js和express来做到这一点。