我在项目中使用node-postgres
(https://node-postgres.com/)池。
在某些情况下,我需要在for循环中处理insert
操作,例如:
data.forEach(items => {
pgPool.query('INSERT INTO cache (hash, data) VALUES($1::text, $2::json)', [key, JSON.stringify(items)])
})
我认为这不是插入多个查询的好方法。
还有更好的方法吗?
例如pgPool.multipleQuery(queryArray)
吗?
还是我的解决方案正确?
谢谢您的帮助。
答案 0 :(得分:1)
我不知道什么样的数据,但是我想像这样:
let data = [
["item1", "item2"],
["item3", "item4"],
["item5", "item6"]
];
我建议您使用inserting multiple rows in a single query并建立查询:
let parameters = data
.map(
(items, i) => ["($", (i * 2) + 1, "::text, $", (i * 2) + 2, "::json)"].join("")
).join(",");
//($1::text, $2::json),($3::text, $4::json),($5::text, $6::json)
let key = "hash";
let parametersValues = data
.flatMap(items => [key, JSON.stringify(items)]);
//["hash", "["item1","item2"]", "hash", "["item3","item4"]", "hash", "["item5","item6"]"]
let queryText = "INSERT INTO cache (hash, data) VALUES" + parameters;
//INSERT INTO cache (hash, data) VALUES($1::text, $2::json),($3::text, $4::json),($5::text, $6::json)
pgPool.query(queryText, parametersValues);