After receiving a dictionary from my server, when I try to access the values using the following code:
{"filters":{
"Facture": [
"Магма (Тычок)",
"Тонкий кирпич",
"Гладкий",
"Крафт",
"Магма"
],
"Color": [
"Беж",
"Черный",
"Амстердам",
"Лондон Брик",
"Мюнхен",
"Сити Брик"
],
"Name": [
"Облицованный кирпич стандартный пустотелый",
"Тонкий колотый с ф. 180/11"
]
}}
The console returns undefined. Despite trying various approaches like changing the data sent by the server or modifying the code for accessing the values, I couldn't figure out a solution.
Interestingly, creating the object within the script works correctly, but utilizing the object received in the response fails.