我编写了这段代码,我正在尝试运行它以便使用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);
答案 0 :(得分:0)
尝试:
$q="UPDATE auth SET auth = '" + $var + "' where id='1'";