gpt4 book ai didi

php - 如何在nodejs中将数组值存储在不同的列中

转载 作者:行者123 更新时间:2023-11-29 18:15:37 24 4
gpt4 key购买 nike

我是 NodeJS/Mysql 新手。我有一个字符串数组,我想将其存储在表的不同列中。

没有。列数 = 5 且数组大小 = 5 [值1,值2...]

  con.connect(function(err) {
if (err) throw err;
console.log("Connected!");

//Insert a record in the "pooltable" table:
var sql = "INSERT INTO pooltable (`t1`, `t2`, `t3`, `t4`, `t5`) VALUES (array)";
con.query(sql, function (err, result) {
if (err) throw err;
console.log("1 record inserted");
});
con.end();
});

问题是我无法将数组拆分为 5 个不同的值,例如 php implode 函数。

最佳答案

对于动态尝试这个

var arr=JSON.stringify(array).substr(1).slice(0, -1);
var sql = 'INSERT INTO pooltable (`t1`, `t2`, `t3`, `t4`, `t5`) VALUES ("'+arr+'")';

关于php - 如何在nodejs中将数组值存储在不同的列中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47053175/

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