答案 0 :(得分:1)
试试这个
ref2.child("keywords").child("hello").child("hello").observe(.value, with: { snapshot in
guard
let dict = snapshot.value as? [String:Any],
let value1 = dict["value1"] as? Int
else { print("Error"); return }
print(value1)
})
下次将代码粘贴为文本,而不是图像