作为一个reult我需要的图标与对象内数组,就像这里:
[
{
"id": 1,
"title": "Title text",
"icons": [
{
"icon": "icon-1.png",
"main": true
},
{
"icon": "icon-2.png",
"main": false
},
{
"icon": "icon-3.png",
"main": false
}
]
}
]
字符串
实体包括:
@PrimaryGeneratedColumn()
id: number;
@Column()
title: string;
型
如何创建图标?
1条答案
按热度按时间bmvo0sr51#
你可以创建一个新的实体并加入它,或者你可以使用
jsonb
类型字符串
你的图标是这样的:
型