我编写了这段代码,并试图运行它以便使用node.js变量更新数据库。脚本可以工作,但是输入字符串“ $ var”而不是实际结果。请帮忙。

谢谢。

var TOTP = require('onceler').TOTP;
    setInterval(function() {
    // create a TOTP object with your Secret
    var totp = new TOTP('CODEHERE');
    $var:{totp.now}
    // print out a code that's valid right now
    console.log(totp.now());
    $q="UPDATE auth SET auth =$var where id='1'";
    con.query(
      $q,function(err,rows){
    if (err) throw err;
    console.log('Data received');
    console.log(rows);
    })},5000);

最佳答案

尝试:

$q="UPDATE auth SET auth = '" + $var + "' where id='1'";

09-25 22:12