gpt4 book ai didi

javascript - 将 node.js 变量导入数据库

转载 作者:行者123 更新时间:2023-11-30 22:31:57 24 4
gpt4 key购买 nike

我编写了这段代码并尝试运行它以便使用 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'";

关于javascript - 将 node.js 变量导入数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33645352/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com