如果我有一個Javascript對象,從JSON解析,這是嵌套三深,我不知道中間的關鍵,如何訪問它和它的內容?Javascript:如果我不知道對象的關鍵字,我如何訪問嵌套對象中的值?
我正在使用的實際數據來自Github API。對於這個例子,我想要所有我的要點的文件名。
[
{
"url": "https://api.github.com/gists/11164200",
"forks_url": "https://api.github.com/gists/11164200/forks",
"commits_url": "https://api.github.com/gists/11164200/commits",
"id": "11164200",
"git_pull_url": "https://gist.github.com/11164200.git",
"git_push_url": "https://gist.github.com/11164200.git",
"html_url": "https://gist.github.com/11164200",
"files": {
"testing.md": {
"filename": "testing.md",
"type": "text/plain",
"language": "Markdown",
"raw_url": "https://gist.githubusercontent.com/omphalosskeptic/11164200/raw/3582779a4925ea514382cedb7d077d00c231f3eb/testing.md",
"size": 4254
}
}, // [ ... continues]
我的Javascript技能還不是很成熟。通常,我可以通過足夠的研究找到我期待的內容,但目前還沒有。最初我預計它會是這樣的:responseObj[0].files[0].filename
。
如果可能我想保留這個簡單的Javascript。
謝謝!
這工作。謝謝! – Curiositry