如何在JavaScript中插入一串字符串中
我有一个字符串数组,我想将其插入到 PostgreSQL 数组中。 我使用 query.pool() 进行查询。 这是我的请求,但没有在数据库中插入任何内容,并且控制台中没有错误消息。
请帮助我;))
const myArray = [ "first1.png", "second2.png", "third.png" ];
pool.query(
`INSERT INTO images(pic_name) VALUES($1)`,
[myArray],
(error, result) => {
if (error) {
res.status(400).json({ error });
}
res.status(200);
},
);
I have an array of strings and I would like to insert it into a PostgreSQL array.
I use query.pool() for the query.
Here is my request but does not insert anything in the DB and I have no error message in the console.
Help me please ;))
const myArray = [ "first1.png", "second2.png", "third.png" ];
pool.query(
`INSERT INTO images(pic_name) VALUES($1)`,
[myArray],
(error, result) => {
if (error) {
res.status(400).json({ error });
}
res.status(200);
},
);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论