ru24.pro
Работа
Ноябрь
2024
1 2 3 4 5 6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

Доработка по Strapi

0
Собрали тестовую конструкцию на 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[]
}