如何在JavaScript中插入一串字符串中

发布于 2025-01-19 13:14:12 字数 486 浏览 0 评论 0原文

我有一个字符串数组,我想将其插入到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文