I'm using a third party tool that POSTs a JSON response. It works great, but one of the keys I need to use has a colon in it and I have no idea how to select this object in JavaScript.
For example:
{
"photo": {
"reg": {
"id": 50
},
"thumb": {
"id": 51
},
":original": {
"id": 53"
}
}
}
How do I select photo.:original.id
? I get syntax errors when I leave the colon in, and undefined
when I try dropping the colon.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…