我有以下 JSON 对象:
{
"features": [{
"properties": {
"lat": "1.2345",
"location c": "aaa",
"location q": "cccc"
}
}
]
}
所以我可以获取properties
,接下来呢?
如您所见,上述字段有 2 个单词。
var location_c = properties.get(/*???*/);
我怎样才能在 JavaScript 中做到这一点?