Допустим, у меня есть JSON вроде:
{
"normal": 1,
"has some spaces": 2,
"@": 3
}
Я могу получить значение поля normal
с помощью простого запроса:
normal
Однако я могу Не получаю два других поля. Я пробовал:
[has some spaces]
'has some spaces'
['has some spaces']
"has some spaces"
["has some spaces"]
{has some spaces}
{'has some spaces'}
{"has some spaces"}
, но ни один из них не работает