[removed] How do I access values in nested objects if I don’t know the object’s key?

前端 未结 2 515
梦毁少年i
梦毁少年i 2021-01-28 03:37

If I have a Javascript object, parsed from JSON, that’s nested three deep, and I don’t know the key for the middle one, how to I access it and its contents?

The actual d

2条回答
  •  伪装坚强ぢ
    2021-01-28 04:15

    If you want to iterate over them, do something like

    for (var fileID in responseObj[0].files) {
        var file = responseObj[0].files[fileID];
        var filename = file.filename;
    }
    

提交回复
热议问题