2
我有以下json並希望訪問'index_2'中包含的列表中的最後一個值。我需要添加到 find({},{「attributes.index_2」:1})只返回index_2列表中的最後一個位置值。如何訪問嵌套數組中的最後一個位置
'name': 'fred',
'attributes': [ {
'index_1': [ [ 1, 2, 3, 4, 5 ] ],
'index_2': [ [ 6, 7, 8, 9, 10] ],
'line_number': 999
} ]