2
我很努力地從我的Firebase獲取一些數據。這是結構的樣子:Swift3 Firebase檢索數據
這是我的代碼與檢索數據:
var followDatesDict = [String:String]()
databaseRef.child("FollowGroups").child(selectedFollowGroupId as String).observeSingleEvent(of: .value, with: { (snapshot) in
if snapshot.hasChildren(){
let name = snapshot.childSnapshot(forPath: "followgroupTitle").value as! String
let sDate = snapshot.childSnapshot(forPath: "startDate").value as! String
let eDate = snapshot.childSnapshot(forPath: "endDate").value as! String
followDatesDict = snapshot.childSnapshot(forPath: "followDates")......
}
})
我可以檢索name
,sDate
和eDate
就好了。但有沒有人知道我可以填補按日期排序的followDatesDict
?正如您在followDates
的結構中看到的,密鑰是一個日期字符串和一個字符串值。
謝謝!