Доработка по Strapi
Собрали тестовую конструкцию на strapi, но ответ который идет на frontend не в нужной структуре.
Необходимо сделать такой формат ответа на frontend.
Type SectionDto = {
__component: "sections.type-1" // Вся проблема в этом поле
id: number
title: string
subtitle: string | null
description: string | null
images: string[] | null // массив фоток, может быть и одна внутри (чаще всего)
actions: {
primary: {href: string, title: string} | null
secondary: {href: string, title: string} | null
} | null
}
type BlockDto: {
__component: "blocks.type-1"
id: number
sections: SectionDto[]
}
Необходимо сделать такой формат ответа на frontend.
Type SectionDto = {
__component: "sections.type-1" // Вся проблема в этом поле
id: number
title: string
subtitle: string | null
description: string | null
images: string[] | null // массив фоток, может быть и одна внутри (чаще всего)
actions: {
primary: {href: string, title: string} | null
secondary: {href: string, title: string} | null
} | null
}
type BlockDto: {
__component: "blocks.type-1"
id: number
sections: SectionDto[]
}