下面是一个示例代码:
battle.heroes = [{ id: hero.id, name: hero.name }]; //This is my array I want to insert
await db.one('INSERT INTO battles(mode, params, heroes) VALUES(${mode}, ${params}, ${heroes}) RETURNING id', {
mode: battle.mode,
params: battle.params,
heroes: battle.heroes,
});
PostgreSQL类型“英雄信息”:
id int4
name varchar
最佳答案
通过使用rawType
和toPostgres
扩展现有对象,或者使用您自己的自定义类型,如下面的一个,通过“AA>”来呈现每个数组元素:
const hero = (id, name) => ({
rawType: true,
toPostgres: () => pgp.as.format('($1, $2)::hero_info', [id, name])
});
用法示例:
const heroes = [hero(1, 'first'), hero(2, 'second')];
await db.one('INSERT INTO battles(mode, params, heroes) VALUES(${mode}, ${params}, ${heroes}) RETURNING id', {
mode: battle.mode,
params: battle.params,
heroes
});
对于上面的代码,您的
heros
数组将正确格式化为:array[(1, 'first')::hero_info, (2, 'second')::hero_info]
关于postgresql - 具有pg-promise的复合类型,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/43715976/