节点js:数据库更新警报

k7fdbhmy  于 2021-06-24  发布在  Mysql
关注(0)|答案(1)|浏览(323)

我想做点像 console.log('Dear user, there was updates') . 我现在做的basic console.log不是我想要的,因为我想从节点检查数据库是否有更新,而不是在函数中更新。

var mysql = require('mysql');

var con = mysql.createConnection({
  host: "localhost",
  user: "root",
  password: "",
  database: "test"
});

con.connect(function(err) {
  if (err) throw err;
  //Update the address field:
  var sql = "UPDATE users SET name = 'lol2' WHERE name = 'lol'";
  con.query(sql, function (err, result) {
    if (err) throw err;
    console.log(result.affectedRows + " record(s) updated");
  });
});

编辑:alert to console.log

b1uwtaje

b1uwtaje1#

警报在node.js中不起作用,而是向客户端发送了一个响应,其中包含所有受影响的结果。并根据结果显示警报和接收到的计数。
如。

return res.status(200).return(result.affectedRows);

在客户端

if(datareceived > 0){
 alert(`Dear user, there was ${datareceived} price updates moment ago`)
}else{ // your other logic }

相关问题