SwiftyJson 无循环遍历多个数组

SwiftyJson go through several arrays without cycles

如何在没有循环的情况下从一个数组转到下一个数组?

JSON: https://i.stack.imgur.com/34BtT.png

我试着这样做

guard let items = self.json["data"]["reels_media"][]["items"].arrayValue else { return }

但是我没有收到物品。

如果我这样做:

guard let items = self.json["data"]["reels_media"][0]["items"].arrayValue else { return }

我没有收到数组的所有元素。

你可以试试

let allItems = self.json["data"]["reels_media"].arrayValue.map({[=10=]["items"].arrayValue}).joined()
print(allItems)