我有以下JSON对象:
{
"features": [{
"properties": {
"lat": "1.2345",
"location c": "aaa",
"location q": "cccc"
}
}
]
}
所以我可以获取properties
以及接下来的内容吗?
如上所述,字段有2个字。
var location_c = properties.get(/*???*/);
我如何在JavaScript中执行此操作?
答案 0 :(得分:8)
使用括号语法。
var location_c = properties['location c'];